diff options
| author | Pieter Wuille <[email protected]> | 2020-10-15 20:57:58 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2020-10-30 15:52:19 -0700 |
| commit | 525cbd425e2f6a1dbd0febc53d7ada22cec4661f (patch) | |
| tree | 20e972c680f5d5cb3d22060d9abb730a33d6e7ea /src/bench | |
| parent | Merge #20186: wallet: Make -wallet setting not create wallets (diff) | |
| download | discoin-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.cpp | 2 |
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(); |