Skip to content

Commit

Permalink
Update max-ops-per-account program option to 64bit
Browse files Browse the repository at this point in the history
was missing in bitshares#1347
  • Loading branch information
abitmore authored Oct 14, 2018
1 parent 88167ad commit d8cb000
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
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 d8cb000

Please sign in to comment.