diff options
| author | John Newbery <[email protected]> | 2019-04-28 16:26:31 -0500 |
|---|---|---|
| committer | John Newbery <[email protected]> | 2019-10-29 15:46:45 -0400 |
| commit | 3004d5a12d09d94bfc4dee2a8e8f2291996a4aaf (patch) | |
| tree | 2d4d4423e4283cbf93406d016baf2ace0b519bc3 /src/test/txvalidation_tests.cpp | |
| parent | [validation] Remove unused first_invalid parameter from ProcessNewBlockHeaders() (diff) | |
| download | discoin-3004d5a12d09d94bfc4dee2a8e8f2291996a4aaf.tar.xz discoin-3004d5a12d09d94bfc4dee2a8e8f2291996a4aaf.zip | |
[validation] Remove fMissingInputs from AcceptToMemoryPool()
Handle this failure in the same way as all other failures: call Invalid()
with the reasons for the failure.
Diffstat (limited to 'src/test/txvalidation_tests.cpp')
| -rw-r--r-- | src/test/txvalidation_tests.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test/txvalidation_tests.cpp b/src/test/txvalidation_tests.cpp index 1f781ca83..391ebfadf 100644 --- a/src/test/txvalidation_tests.cpp +++ b/src/test/txvalidation_tests.cpp @@ -39,7 +39,6 @@ BOOST_FIXTURE_TEST_CASE(tx_mempool_reject_coinbase, TestChain100Setup) BOOST_CHECK_EQUAL( false, AcceptToMemoryPool(mempool, state, MakeTransactionRef(coinbaseTx), - nullptr /* pfMissingInputs */, nullptr /* plTxnReplaced */, true /* bypass_limits */, 0 /* nAbsurdFee */)); |