GRPH-46-AddQuitCommandToCliWallet - Add Quit command to CLI Wallet #9

Merged
gladcow merged 1 commit from feature/GRPH-46 into latest-fc 2019-12-06 16:34:34 +00:00
Showing only changes of commit 4beb698268 - Show all commits

View file

@ -121,6 +121,11 @@ void cli::run()
catch ( const fc::exception& e )
{
std::cout << e.to_detail_string() << "\n";
if (e.code() == fc::canceled_exception_code)
{
break;
}
}
}
}