0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-03 09:56:38 -05:00

bench: reduce the number of txs in wallet for wallet loading bench

This commit is contained in:
Andrew Chow 2022-04-20 13:52:27 -04:00
parent f85b54ed27
commit 7c0d34476d

View file

@ -76,7 +76,7 @@ static void WalletLoading(benchmark::Bench& bench, bool legacy_wallet)
auto wallet = BenchLoadWallet(context, options); auto wallet = BenchLoadWallet(context, options);
// Generate a bunch of transactions and addresses to put into the wallet // Generate a bunch of transactions and addresses to put into the wallet
for (int i = 0; i < 5000; ++i) { for (int i = 0; i < 1000; ++i) {
AddTx(*wallet); AddTx(*wallet);
} }