From d8cb000aafca3fc7e0de7ee28f3fea78ade58e9d Mon Sep 17 00:00:00 2001 From: Abit Date: Sun, 14 Oct 2018 22:03:19 +0200 Subject: [PATCH] Update max-ops-per-account program option to 64bit was missing in https://github.com/bitshares/bitshares-core/pull/1347 --- libraries/plugins/account_history/account_history_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/plugins/account_history/account_history_plugin.cpp b/libraries/plugins/account_history/account_history_plugin.cpp index 5d38ec70e2..59f238c43a 100644 --- a/libraries/plugins/account_history/account_history_plugin.cpp +++ b/libraries/plugins/account_history/account_history_plugin.cpp @@ -282,7 +282,7 @@ void account_history_plugin::plugin_set_program_options( cli.add_options() ("track-account", boost::program_options::value>()->composing()->multitoken(), "Account ID to track history for (may specify multiple times)") ("partial-operations", boost::program_options::value(), "Keep only those operations in memory that are related to account history tracking") - ("max-ops-per-account", boost::program_options::value(), "Maximum number of operations per account will be kept in memory") + ("max-ops-per-account", boost::program_options::value(), "Maximum number of operations per account will be kept in memory") ; cfg.add(cli); }