diff options
| author | Jeff Garzik <[email protected]> | 2014-02-24 14:05:54 -0500 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2014-02-24 14:05:54 -0500 |
| commit | beabca2be092d0e2a1de26989d4e63a12cce1284 (patch) | |
| tree | 69eb46bc96482946cba614b47530e4244da37cde /src/test/transaction_tests.cpp | |
| parent | Merge pull request #3700 from gavinandresen/backuptest (diff) | |
| parent | Drop fees by 10x due to the persistently higher exchange rate. (diff) | |
| download | discoin-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/transaction_tests.cpp')
| -rw-r--r-- | src/test/transaction_tests.cpp | 4 |
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; |