diff options
| author | Pieter Wuille <[email protected]> | 2017-11-21 17:44:54 -0800 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2017-11-21 18:05:30 -0800 |
| commit | 5ea932a51083837cdd27715e10a3a0d5d553af24 (patch) | |
| tree | bfc0fdf6d3f1a538340f6efa301324403d059c9f /src | |
| parent | Merge #11738: Fix sendrawtransaction hang when sending a tx already in mempool (diff) | |
| parent | trivial: Fix unsuccessful typo (diff) | |
| download | discoin-5ea932a51083837cdd27715e10a3a0d5d553af24.tar.xz discoin-5ea932a51083837cdd27715e10a3a0d5d553af24.zip | |
Merge #11746: trivial: Fix unsuccessful typo
d2ea2bcb5 trivial: Fix unsuccessful typo (practicalswift)
Pull request description:
Fix unsuccessful typo.
Tree-SHA512: 48dde6764603b91cdd698fd9b5ea200961009df07f5a024430aaf81c50d889ed72681d76ac0832cdafaa2fd2be32ef3637ba641308de5eea6146f3b1074e9b19
Diffstat (limited to 'src')
| -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 d6abe3e5a..2d1eb7b77 100644 --- a/src/test/txvalidation_tests.cpp +++ b/src/test/txvalidation_tests.cpp @@ -49,7 +49,7 @@ BOOST_FIXTURE_TEST_CASE(tx_mempool_reject_coinbase, TestChain100Setup) // Check that the transaction hasn't been added to mempool. BOOST_CHECK_EQUAL(mempool.size(), initialPoolSize); - // Check that the validation state reflects the unsuccesful attempt. + // Check that the validation state reflects the unsuccessful attempt. BOOST_CHECK(state.IsInvalid()); BOOST_CHECK_EQUAL(state.GetRejectReason(), "coinbase"); |