aboutsummaryrefslogtreecommitdiff
path: root/src/bench
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2020-05-03 18:41:01 +0000
committerpracticalswift <practicalswift@users.noreply.github.com>2020-05-03 18:42:14 +0000
commitb56607a89ba112083f2b0a7b64ab18d66b26e2be (patch)
tree2577d5df49e49317522c15c0907976b46e917651 /src/bench
parent844d2070a2c0106bb7a54be5cad7d4da4d9cd55e (diff)
downloadbitcoin-b56607a89ba112083f2b0a7b64ab18d66b26e2be.tar.xz
Remove CCoinsViewCache::GetValueIn(...)
Diffstat (limited to 'src/bench')
-rw-r--r--src/bench/ccoins_caching.cpp2
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();
}