Skip to content

Commit

Permalink
tests: update transaction_tests for new dust threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
laanwj committed Oct 10, 2015
1 parent 28e3249 commit 4e2efb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/transaction_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ BOOST_AUTO_TEST_CASE(test_IsStandard)
t.vout[0].nValue = 501; // dust
BOOST_CHECK(!IsStandardTx(t, reason));

t.vout[0].nValue = 601; // not dust
t.vout[0].nValue = 2730; // not dust
BOOST_CHECK(IsStandardTx(t, reason));

t.vout[0].scriptPubKey = CScript() << OP_1;
Expand Down

0 comments on commit 4e2efb3

Please sign in to comment.