diff options
author | Andrew Chow <achow101-github@achow101.com> | 2022-04-19 12:22:44 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2022-04-19 12:22:44 -0400 |
commit | 9e404a98312d73c969adf4f8e87aad1ac4b3029d (patch) | |
tree | 334b58ccf3d6a744a997f178c9ec07cc6449960e | |
parent | 6300b9556ec927a61371053fafe1a4045f5afb00 (diff) |
bench: Remove minEpochIterations from wallet loading benchmark
This is probably unnecessary and just makes it slower.
-rw-r--r-- | src/bench/wallet_loading.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bench/wallet_loading.cpp b/src/bench/wallet_loading.cpp index 38d3460001..8dc46c2268 100644 --- a/src/bench/wallet_loading.cpp +++ b/src/bench/wallet_loading.cpp @@ -68,7 +68,7 @@ static void WalletLoading(benchmark::Bench& bench, bool legacy_wallet) // reload the wallet for the actual benchmark BenchUnloadWallet(std::move(wallet)); - bench.minEpochIterations(10).run([&] { + bench.run([&] { wallet = BenchLoadWallet(context, options); // Cleanup |