mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2025-07-07 18:38:21 +00:00
blockchain_utilities: Pass expected number of blocks when starting batch
This commit is contained in:
parent
6e170c8b78
commit
699e4b3f65
2 changed files with 4 additions and 4 deletions
|
@ -254,7 +254,7 @@ int import_from_file(FakeCore& simple_core, std::string& import_file_path, uint6
|
|||
}
|
||||
|
||||
if (use_batch)
|
||||
simple_core.batch_start();
|
||||
simple_core.batch_start(db_batch_size);
|
||||
|
||||
LOG_PRINT_L0("Reading blockchain from bootstrap file...");
|
||||
std::cout << ENDL;
|
||||
|
@ -482,7 +482,7 @@ int import_from_file(FakeCore& simple_core, std::string& import_file_path, uint6
|
|||
// zero-based height
|
||||
std::cout << ENDL << "[- batch commit at height " << h-1 << " -]" << ENDL;
|
||||
simple_core.batch_stop();
|
||||
simple_core.batch_start();
|
||||
simple_core.batch_start(db_batch_size);
|
||||
std::cout << ENDL;
|
||||
#if !defined(BLOCKCHAIN_DB) || (BLOCKCHAIN_DB == DB_LMDB)
|
||||
simple_core.m_storage.get_db().show_stats();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue