diff options
| author | Alex Morcos <[email protected]> | 2017-01-20 09:24:35 -0500 |
|---|---|---|
| committer | Alex Morcos <[email protected]> | 2017-03-03 16:50:20 -0500 |
| commit | 359e8a03d1667dca3e8375695131b8b5e6c54f0a (patch) | |
| tree | b92b29328bfce5456650488ad40ed87350697b1a /src/test/test_bitcoin.cpp | |
| parent | [rpc] Remove priorityDelta from prioritisetransaction (diff) | |
| download | discoin-359e8a03d1667dca3e8375695131b8b5e6c54f0a.tar.xz discoin-359e8a03d1667dca3e8375695131b8b5e6c54f0a.zip | |
[cleanup] Remove coin age priority completely.
Remove GetPriority and ComputePriority. Remove internal machinery for tracking priority in CTxMemPoolEntry.
Diffstat (limited to 'src/test/test_bitcoin.cpp')
| -rw-r--r-- | src/test/test_bitcoin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp index e6d34de1a..fc3747436 100644 --- a/src/test/test_bitcoin.cpp +++ b/src/test/test_bitcoin.cpp @@ -147,8 +147,8 @@ CTxMemPoolEntry TestMemPoolEntryHelper::FromTx(const CMutableTransaction &tx) { } CTxMemPoolEntry TestMemPoolEntryHelper::FromTx(const CTransaction &txn) { - return CTxMemPoolEntry(MakeTransactionRef(txn), nFee, nTime, 0.0, nHeight, - 0, spendsCoinbase, sigOpCost, lp); + return CTxMemPoolEntry(MakeTransactionRef(txn), nFee, nTime, nHeight, + spendsCoinbase, sigOpCost, lp); } void Shutdown(void* parg) |