Increase CLI command history buffer size to 256

This commit is contained in:
abitmore 2019-05-03 09:46:13 -04:00
parent a71893adba
commit bd3036df8a

View file

@ -56,6 +56,11 @@ void cli::send_notice( uint64_t callback_id, variants args /* = variants() */ )
void cli::start()
{
cli_commands() = get_method_names(0);
#ifdef HAVE_EDITLINE
el_hist_size = 256;
#endif
_run_complete = fc::async( [&](){ run(); } );
}