policy: Treat taproot as always active

This commit is contained in:
MarcoFalke
2021-11-15 10:56:16 +01:00
parent 15d109802a
commit fa3e0da06b
13 changed files with 42 additions and 58 deletions

View File

@@ -45,7 +45,7 @@ static void CCoinsCaching(benchmark::Bench& bench)
// Benchmark.
const CTransaction tx_1(t1);
bench.run([&] {
bool success = AreInputsStandard(tx_1, coins, false);
bool success{AreInputsStandard(tx_1, coins)};
assert(success);
});
ECC_Stop();