diff options
| author | Pieter Wuille <[email protected]> | 2017-04-25 11:29:30 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2017-06-01 11:56:06 -0700 |
| commit | f68cdfe92b37f5a75be612b7de3c1a03245696d0 (patch) | |
| tree | b1d86511970e341266e4cdb73c74b42fba77f705 /src/test/script_P2SH_tests.cpp | |
| parent | Introduce new per-txout CCoinsViewCache functions (diff) | |
| download | discoin-f68cdfe92b37f5a75be612b7de3c1a03245696d0.tar.xz discoin-f68cdfe92b37f5a75be612b7de3c1a03245696d0.zip | |
Switch from per-tx to per-txout CCoinsViewCache methods in some places
Diffstat (limited to 'src/test/script_P2SH_tests.cpp')
| -rw-r--r-- | src/test/script_P2SH_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/script_P2SH_tests.cpp b/src/test/script_P2SH_tests.cpp index ede68f23d..1ab0fef44 100644 --- a/src/test/script_P2SH_tests.cpp +++ b/src/test/script_P2SH_tests.cpp @@ -316,7 +316,7 @@ BOOST_AUTO_TEST_CASE(AreInputsStandard) txFrom.vout[6].scriptPubKey = GetScriptForDestination(CScriptID(twentySigops)); txFrom.vout[6].nValue = 6000; - coins.ModifyCoins(txFrom.GetHash())->FromTx(txFrom, 0); + AddCoins(coins, txFrom, 0); CMutableTransaction txTo; txTo.vout.resize(1); |