diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-06-26 17:19:31 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-07-07 10:08:49 +0200 |
commit | 6ad0328f1c3e145d3224197eafd0f66b17cc1a1c (patch) | |
tree | 882c1e7bb5c90609063a05e642b4efb8cf2c1660 /src/test/txvalidation_tests.cpp | |
parent | 0212187fc624ea4a02fc99bc57ebd413499a9ee1 (diff) |
Don't assert(foo()) where foo has side effects
Diffstat (limited to 'src/test/txvalidation_tests.cpp')
-rw-r--r-- | src/test/txvalidation_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/txvalidation_tests.cpp b/src/test/txvalidation_tests.cpp index 2d1eb7b772..473ec5addf 100644 --- a/src/test/txvalidation_tests.cpp +++ b/src/test/txvalidation_tests.cpp @@ -30,7 +30,7 @@ BOOST_FIXTURE_TEST_CASE(tx_mempool_reject_coinbase, TestChain100Setup) coinbaseTx.vout[0].nValue = 1 * CENT; coinbaseTx.vout[0].scriptPubKey = scriptPubKey; - assert(CTransaction(coinbaseTx).IsCoinBase()); + BOOST_CHECK(CTransaction(coinbaseTx).IsCoinBase()); CValidationState state; |