We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 392dd79 commit 74ad71dCopy full SHA for 74ad71d
divi/src/I_UtxoPriorityAlgorithm.h
@@ -0,0 +1,10 @@
1
+#ifndef I_UTXO_PRIORITY_ALGORITHM_H
2
+#define I_UTXO_PRIORITY_ALGORITHM_H
3
+struct InputToSpendAndSigSize;
4
+class I_UtxoPriorityAlgorithm
5
+{
6
+public:
7
+ virtual ~I_UtxoPriorityAlgorithm(){}
8
+ virtual bool operator()(const InputToSpendAndSigSize& first, const InputToSpendAndSigSize& second) const = 0;
9
+};
10
+#endif //I_UTXO_PRIORITY_ALGORITHM_H
divi/src/Makefile.am
@@ -385,6 +385,7 @@ BITCOIN_CORE_H = \
385
CachedTransactionDeltasCalculator.h \
386
wallet.h \
387
WalletTx.h \
388
+ I_UtxoPriorityAlgorithm.h \
389
I_UtxoOwnershipDetector.h \
390
I_TransactionDetailCalculator.h \
391
CachedUtxoBalanceCalculator.h \
0 commit comments