mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
Move maxTxFee out of mempool
Also, remove default values in CMerkleTx::AcceptToMemoryPool()
This commit is contained in:
parent
fd13fe7ca0
commit
fa79db2641
6 changed files with 18 additions and 17 deletions
|
|
@ -23,7 +23,7 @@ ToMemPool(CMutableTransaction& tx)
|
|||
LOCK(cs_main);
|
||||
|
||||
CValidationState state;
|
||||
return AcceptToMemoryPool(mempool, state, tx, false, NULL, true, false);
|
||||
return AcceptToMemoryPool(mempool, state, tx, false, NULL, true, 0);
|
||||
}
|
||||
|
||||
BOOST_FIXTURE_TEST_CASE(tx_mempool_block_doublespend, TestChain100Setup)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue