diff options
| author | Max K. <[email protected]> | 2015-07-31 20:16:46 +0200 |
|---|---|---|
| committer | Max K. <[email protected]> | 2015-07-31 20:16:46 +0200 |
| commit | faaa41271763a595007dc54639f86026d4b0eca9 (patch) | |
| tree | 27eaff706a748442d830e5da0643d672aafe4044 /src/test/script_P2SH_tests.cpp | |
| parent | Merge pull request #1215 from rnicoll/1.10-bitcoin-fix (diff) | |
| parent | Add Dogecoin current fee calculation logic (diff) | |
| download | discoin-faaa41271763a595007dc54639f86026d4b0eca9.tar.xz discoin-faaa41271763a595007dc54639f86026d4b0eca9.zip | |
Merge pull request #1204 from rnicoll/1.10-fees
Add Dogecoin current fee calculation logic
Diffstat (limited to 'src/test/script_P2SH_tests.cpp')
| -rw-r--r-- | src/test/script_P2SH_tests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/script_P2SH_tests.cpp b/src/test/script_P2SH_tests.cpp index c8cfe2872..51bf47c9d 100644 --- a/src/test/script_P2SH_tests.cpp +++ b/src/test/script_P2SH_tests.cpp @@ -184,7 +184,7 @@ BOOST_AUTO_TEST_CASE(set) for (int i = 0; i < 4; i++) { txFrom.vout[i].scriptPubKey = outer[i]; - txFrom.vout[i].nValue = CENT; + txFrom.vout[i].nValue = COIN; } BOOST_CHECK(IsStandardTx(txFrom, reason)); @@ -195,7 +195,7 @@ BOOST_AUTO_TEST_CASE(set) txTo[i].vout.resize(1); txTo[i].vin[0].prevout.n = i; txTo[i].vin[0].prevout.hash = txFrom.GetHash(); - txTo[i].vout[0].nValue = 1*CENT; + txTo[i].vout[0].nValue = 1*COIN; txTo[i].vout[0].scriptPubKey = inner[i]; #ifdef ENABLE_WALLET BOOST_CHECK_MESSAGE(IsMine(keystore, txFrom.vout[i].scriptPubKey), strprintf("IsMine %d", i)); |