diff options
author | warptangent <warptangent@inbox.com> | 2015-03-22 10:57:18 -0700 |
---|---|---|
committer | warptangent <warptangent@inbox.com> | 2015-03-22 15:45:36 -0700 |
commit | 4bedd68d2c058184333101e4d3a31856f6226cd4 (patch) | |
tree | 015b313092cec3288f5cf8483eafcbe04128732f /src/blockchain_converter/blockchain_import.cpp | |
parent | Add README for blockchain converter, importer, and exporter utilities (diff) | |
download | monero-4bedd68d2c058184333101e4d3a31856f6226cd4.tar.xz |
Update Blockchain::get_db() to return reference instead of pointer
Where this method is used, a BlockchainDB object is always expected, so
a pointer is unnecessary and less safe.
Diffstat (limited to 'src/blockchain_converter/blockchain_import.cpp')
-rw-r--r-- | src/blockchain_converter/blockchain_import.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/blockchain_converter/blockchain_import.cpp b/src/blockchain_converter/blockchain_import.cpp index 060fe8481..841624e43 100644 --- a/src/blockchain_converter/blockchain_import.cpp +++ b/src/blockchain_converter/blockchain_import.cpp @@ -214,7 +214,7 @@ int import_from_file(FakeCore& simple_core, std::string& import_file_path) // Reset stats, in case we're using newly created db, accumulating stats // from addition of genesis block. // This aligns internal db counts with importer counts. - simple_core.m_storage.get_db()->reset_stats(); + simple_core.m_storage.get_db().reset_stats(); } #endif boost::filesystem::path raw_file_path(import_file_path); @@ -497,7 +497,7 @@ int import_from_file(FakeCore& simple_core, std::string& import_file_path) simple_core.batch_start(); std::cout << ENDL; #if !defined(BLOCKCHAIN_DB) || (BLOCKCHAIN_DB == DB_LMDB) - simple_core.m_storage.get_db()->show_stats(); + simple_core.m_storage.get_db().show_stats(); #endif } } @@ -525,7 +525,7 @@ int import_from_file(FakeCore& simple_core, std::string& import_file_path) simple_core.batch_stop(); } #if !defined(BLOCKCHAIN_DB) || (BLOCKCHAIN_DB == DB_LMDB) - simple_core.m_storage.get_db()->show_stats(); + simple_core.m_storage.get_db().show_stats(); #endif if (h > 0) LOG_PRINT_L0("Finished at height: " << h << " block: " << h-1); |