diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-09-26 17:33:08 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-09-26 17:33:08 +0200 |
commit | 90f818b6461f178851507f879c0a31134e85e043 (patch) | |
tree | f49ed327e6fc5b848b48fa90ed0e74bddbe1ceb3 /src | |
parent | Merge pull request #1105 (diff) | |
parent | Fix minor typo in "need resize" message. (diff) | |
download | monero-90f818b6461f178851507f879c0a31134e85e043.tar.xz |
Merge pull request #1113
12427dd Fix minor typo in "need resize" message. (Myagui)
Diffstat (limited to 'src')
-rw-r--r-- | src/blockchain_db/lmdb/db_lmdb.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/blockchain_db/lmdb/db_lmdb.cpp b/src/blockchain_db/lmdb/db_lmdb.cpp index 8ad875fc8..21ed8f4da 100644 --- a/src/blockchain_db/lmdb/db_lmdb.cpp +++ b/src/blockchain_db/lmdb/db_lmdb.cpp @@ -1081,7 +1081,7 @@ void BlockchainLMDB::open(const std::string& filename, const int mdb_flags) if (need_resize()) { - LOG_PRINT_L0("LMDB memory map needs resized, doing that now."); + LOG_PRINT_L0("LMDB memory map needs to be resized, doing that now."); do_resize(); } @@ -2500,7 +2500,7 @@ uint64_t BlockchainLMDB::add_block(const block& blk, const size_t& block_size, c // for batch mode, DB resize check is done at start of batch transaction if (! m_batch_active && need_resize()) { - LOG_PRINT_L0("LMDB memory map needs resized, doing that now."); + LOG_PRINT_L0("LMDB memory map needs to be resized, doing that now."); do_resize(); } } |