From ee47c9eabd3e92b8b2e3db4d8f399d149dc83d02 Mon Sep 17 00:00:00 2001 From: gurglespuge Date: Sun, 1 Dec 2024 11:44:52 -0800 Subject: [PATCH] Update blockchain_storage.cpp updated type definitions in blockchain_storage.cpp 79 and 80 to be in line with other code --- src/currency_core/blockchain_storage.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/currency_core/blockchain_storage.cpp b/src/currency_core/blockchain_storage.cpp index 0d6d41f8..32a8e9a9 100644 --- a/src/currency_core/blockchain_storage.cpp +++ b/src/currency_core/blockchain_storage.cpp @@ -76,8 +76,8 @@ DISABLE_VS_WARNINGS(4267) namespace { - const command_line::arg_descriptor arg_db_cache_l1 ( "db-cache-l1", "Specify size of memory mapped db cache file"); - const command_line::arg_descriptor arg_db_cache_l2 ( "db-cache-l2", "Specify cached elements in db helpers"); + const command_line::arg_descriptor arg_db_cache_l1 ( "db-cache-l1", "Specify size of memory mapped db cache file"); + const command_line::arg_descriptor arg_db_cache_l2 ( "db-cache-l2", "Specify cached elements in db helpers"); } //------------------------------------------------------------------