aboutsummaryrefslogtreecommitdiff
path: root/src/bench
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2020-10-15 20:57:58 -0700
committerPieter Wuille <[email protected]>2020-10-30 15:52:19 -0700
commit525cbd425e2f6a1dbd0febc53d7ada22cec4661f (patch)
tree20e972c680f5d5cb3d22060d9abb730a33d6e7ea /src/bench
parentMerge #20186: wallet: Make -wallet setting not create wallets (diff)
downloaddiscoin-525cbd425e2f6a1dbd0febc53d7ada22cec4661f.tar.xz
discoin-525cbd425e2f6a1dbd0febc53d7ada22cec4661f.zip
Only relay Taproot spends if next block has it active
Diffstat (limited to 'src/bench')
-rw-r--r--src/bench/ccoins_caching.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bench/ccoins_caching.cpp b/src/bench/ccoins_caching.cpp
index 116de98b1..d5275b0b7 100644
--- a/src/bench/ccoins_caching.cpp
+++ b/src/bench/ccoins_caching.cpp
@@ -45,7 +45,7 @@ static void CCoinsCaching(benchmark::Bench& bench)
// Benchmark.
const CTransaction tx_1(t1);
bench.run([&] {
- bool success = AreInputsStandard(tx_1, coins);
+ bool success = AreInputsStandard(tx_1, coins, false);
assert(success);
});
ECC_Stop();