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:
parent
f85b54ed27
commit
7c0d34476d
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ static void WalletLoading(benchmark::Bench& bench, bool legacy_wallet)
|
|||
auto wallet = BenchLoadWallet(context, options);
|
||||
|
||||
// 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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue