Fix typo on CLI online_weight_clear success message (#3405)

This commit is contained in:
Zach Hyatt 2021-07-28 17:16:35 -05:00 committed by GitHub
commit 3e7a53192a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -528,7 +528,7 @@ std::error_code nano::handle_node_options (boost::program_options::variables_map
{
auto transaction (node.node->store.tx_begin_write ());
node.node->store.online_weight.clear (transaction);
std::cout << "Onine weight records are removed" << std::endl;
std::cout << "Online weight records are removed" << std::endl;
}
else
{