aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorJeff Garzik <[email protected]>2014-02-24 14:05:54 -0500
committerJeff Garzik <[email protected]>2014-02-24 14:05:54 -0500
commitbeabca2be092d0e2a1de26989d4e63a12cce1284 (patch)
tree69eb46bc96482946cba614b47530e4244da37cde /src/test
parentMerge pull request #3700 from gavinandresen/backuptest (diff)
parentDrop fees by 10x due to the persistently higher exchange rate. (diff)
downloaddiscoin-beabca2be092d0e2a1de26989d4e63a12cce1284.tar.xz
discoin-beabca2be092d0e2a1de26989d4e63a12cce1284.zip
Merge pull request #3305 from mikehearn/fee_drop
Drop fees by 10x due to the persistently higher exchange rate.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/transaction_tests.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/transaction_tests.cpp b/src/test/transaction_tests.cpp
index ad33184bc..5212dfc70 100644
--- a/src/test/transaction_tests.cpp
+++ b/src/test/transaction_tests.cpp
@@ -271,10 +271,10 @@ BOOST_AUTO_TEST_CASE(test_IsStandard)
string reason;
BOOST_CHECK(IsStandardTx(t, reason));
- t.vout[0].nValue = 5011; // dust
+ t.vout[0].nValue = 501; // dust
BOOST_CHECK(!IsStandardTx(t, reason));
- t.vout[0].nValue = 6011; // not dust
+ t.vout[0].nValue = 601; // not dust
BOOST_CHECK(IsStandardTx(t, reason));
t.vout[0].scriptPubKey = CScript() << OP_1;