Skip to content

Commit

Permalink
Merge pull request #1374 from bitshares/abitmore-patch-3
Browse files Browse the repository at this point in the history
Update max-ops-per-account program option to 64bit
  • Loading branch information
oxarbitrage committed Oct 14, 2018
2 parents 88167ad + d8cb000 commit aa664b5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -282,7 +282,7 @@ void account_history_plugin::plugin_set_program_options(
cli.add_options()
("track-account", boost::program_options::value<std::vector<std::string>>()->composing()->multitoken(), "Account ID to track history for (may specify multiple times)")
("partial-operations", boost::program_options::value<bool>(), "Keep only those operations in memory that are related to account history tracking")
("max-ops-per-account", boost::program_options::value<uint32_t>(), "Maximum number of operations per account will be kept in memory")
("max-ops-per-account", boost::program_options::value<uint64_t>(), "Maximum number of operations per account will be kept in memory")
;
cfg.add(cli);
}
Expand Down

0 comments on commit aa664b5

Please sign in to comment.