diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2020-05-03 18:41:01 +0000 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2020-05-03 18:42:14 +0000 |
commit | b56607a89ba112083f2b0a7b64ab18d66b26e2be (patch) | |
tree | 2577d5df49e49317522c15c0907976b46e917651 /src/bench/ccoins_caching.cpp | |
parent | 844d2070a2c0106bb7a54be5cad7d4da4d9cd55e (diff) |
Remove CCoinsViewCache::GetValueIn(...)
Diffstat (limited to 'src/bench/ccoins_caching.cpp')
-rw-r--r-- | src/bench/ccoins_caching.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bench/ccoins_caching.cpp b/src/bench/ccoins_caching.cpp index d658976c3c..86f9a0bf67 100644 --- a/src/bench/ccoins_caching.cpp +++ b/src/bench/ccoins_caching.cpp @@ -47,8 +47,6 @@ static void CCoinsCaching(benchmark::State& state) while (state.KeepRunning()) { bool success = AreInputsStandard(tx_1, coins); assert(success); - CAmount value = coins.GetValueIn(tx_1); - assert(value == (50 + 21 + 22) * COIN); } ECC_Stop(); } |