From 15fc7f2133afff600a67ba96e8e9d68a6a03b2c9 Mon Sep 17 00:00:00 2001 From: Alexander Block Date: Thu, 21 Dec 2017 06:57:45 +0100 Subject: [PATCH] De-bump fees in miner_tests.cpp Bumped unnecessarily 10x when backporting PRs --- src/test/miner_tests.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/miner_tests.cpp b/src/test/miner_tests.cpp index 06e6f792e..deff7d268 100644 --- a/src/test/miner_tests.cpp +++ b/src/test/miner_tests.cpp @@ -127,9 +127,9 @@ BOOST_AUTO_TEST_CASE(CreateNewBlock_validity) delete pblocktemplate; const CAmount BLOCKSUBSIDY = 500*COIN; - const CAmount LOWFEE = 10*CENT; - const CAmount HIGHFEE = 10*COIN; - const CAmount HIGHERFEE = 40*COIN; + const CAmount LOWFEE = CENT; + const CAmount HIGHFEE = COIN; + const CAmount HIGHERFEE = 4*COIN; // block sigops > limit: 1000 CHECKMULTISIG + 1 tx.vin.resize(1);