[trivial] New DEFAULT_MIN_RELAY_TX_FEE = 1000

This commit is contained in:
MarcoFalke
2015-10-27 17:21:43 +01:00
parent 5f46a7d068
commit 536766c903
3 changed files with 4 additions and 2 deletions

View File

@@ -361,7 +361,7 @@ BOOST_AUTO_TEST_CASE(test_IsStandard)
// not dust:
t.vout[0].nValue = 672;
BOOST_CHECK(IsStandardTx(t, reason));
minRelayTxFee = CFeeRate(1000);
minRelayTxFee = CFeeRate(DEFAULT_MIN_RELAY_TX_FEE);
t.vout[0].scriptPubKey = CScript() << OP_1;
BOOST_CHECK(!IsStandardTx(t, reason));