diff --git a/src/bench/ccoins_caching.cpp b/src/bench/ccoins_caching.cpp index 351861536ca..673616a5a74 100644 --- a/src/bench/ccoins_caching.cpp +++ b/src/bench/ccoins_caching.cpp @@ -49,8 +49,7 @@ static void CCoinsCaching(benchmark::Bench& bench) // Benchmark. const CTransaction tx_1(t1); bench.run([&] { - bool success{AreInputsStandard(tx_1, coins)}; - assert(success); + assert(ValidateInputsStandardness(tx_1, coins).IsValid()); }); } diff --git a/src/policy/policy.cpp b/src/policy/policy.cpp index 3da6cb7489b..2f5f9fce838 100644 --- a/src/policy/policy.cpp +++ b/src/policy/policy.cpp @@ -18,6 +18,7 @@ #include