diff options
author | warptangent <warptangent@inbox.com> | 2015-07-11 12:28:20 -0700 |
---|---|---|
committer | warptangent <warptangent@inbox.com> | 2015-07-11 23:54:12 -0700 |
commit | 6e170c8b786a443bfece65f28e33d1b5455b269c (patch) | |
tree | 678f5130753aa75c507b5b5ecb669e1d79dab936 /src/blockchain_utilities | |
parent | Merge pull request #329 (diff) | |
download | monero-6e170c8b786a443bfece65f28e33d1b5455b269c.tar.xz |
Optionally allow DB to know expected number of blocks at batch transaction start
This will assist in a DB resize check.
Diffstat (limited to 'src/blockchain_utilities')
-rw-r--r-- | src/blockchain_utilities/fake_core.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/blockchain_utilities/fake_core.h b/src/blockchain_utilities/fake_core.h index 79fb51842..5eda504fe 100644 --- a/src/blockchain_utilities/fake_core.h +++ b/src/blockchain_utilities/fake_core.h @@ -96,9 +96,9 @@ struct fake_core_lmdb return m_storage.get_db().add_block(blk, block_size, cumulative_difficulty, coins_generated, txs); } - void batch_start() + void batch_start(uint64_t batch_num_blocks = 0) { - m_storage.get_db().batch_start(); + m_storage.get_db().batch_start(batch_num_blocks); } void batch_stop() @@ -150,7 +150,7 @@ struct fake_core_memory return 2; } - void batch_start() + void batch_start(uint64_t batch_num_blocks = 0) { LOG_PRINT_L0("WARNING: [batch_start] opt_batch set, but this database doesn't support/need transactions - ignoring"); } |