Skip to content

Commit 4e2efb3

Browse files
committed
tests: update transaction_tests for new dust threshold
1 parent 28e3249 commit 4e2efb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/transaction_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ BOOST_AUTO_TEST_CASE(test_IsStandard)
345345
t.vout[0].nValue = 501; // dust
346346
BOOST_CHECK(!IsStandardTx(t, reason));
347347

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

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

0 commit comments

Comments
 (0)