diff options
| author | Pieter Wuille <[email protected]> | 2014-09-03 09:25:32 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-09-23 22:29:21 +0200 |
| commit | c9d1a81ce76737a73c9706e074a4fe8440c8277e (patch) | |
| tree | e0632f5b7e27ff788ecfef97e0bfd7d31ef12b21 /src/test/script_P2SH_tests.cpp | |
| parent | Use ModifyCoins instead of mutable GetCoins. (diff) | |
| download | discoin-c9d1a81ce76737a73c9706e074a4fe8440c8277e.tar.xz discoin-c9d1a81ce76737a73c9706e074a4fe8440c8277e.zip | |
Get rid of CCoinsView's SetCoins and SetBestBlock.
All direct modifications are now done through ModifyCoins, and BatchWrite is
used for pushing batches of queued modifications up, so we don't need the
low-level SetCoins and SetBestBlock anymore in the top-level CCoinsView class.
Diffstat (limited to 'src/test/script_P2SH_tests.cpp')
| -rw-r--r-- | src/test/script_P2SH_tests.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/script_P2SH_tests.cpp b/src/test/script_P2SH_tests.cpp index e6cf00c2d..645d3c691 100644 --- a/src/test/script_P2SH_tests.cpp +++ b/src/test/script_P2SH_tests.cpp @@ -312,8 +312,7 @@ BOOST_AUTO_TEST_CASE(AreInputsStandard) txFrom.vout[6].scriptPubKey = GetScriptForDestination(twentySigops.GetID()); txFrom.vout[6].nValue = 6000; - - coins.SetCoins(txFrom.GetHash(), CCoins(txFrom, 0)); + coins.ModifyCoins(txFrom.GetHash())->FromTx(txFrom, 0); CMutableTransaction txTo; txTo.vout.resize(1); |