diff options
| author | practicalswift <[email protected]> | 2020-05-03 18:41:01 +0000 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2020-05-03 18:42:14 +0000 |
| commit | b56607a89ba112083f2b0a7b64ab18d66b26e2be (patch) | |
| tree | 2577d5df49e49317522c15c0907976b46e917651 /src/bench/ccoins_caching.cpp | |
| parent | Merge #18828: test: Strip down previous releases boilerplate (diff) | |
| download | discoin-b56607a89ba112083f2b0a7b64ab18d66b26e2be.tar.xz discoin-b56607a89ba112083f2b0a7b64ab18d66b26e2be.zip | |
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 d658976c3..86f9a0bf6 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(); } |