Merge pull request #9 from peerplays-network/feature/GRPH-46

GRPH-46-AddQuitCommandToCliWallet - Add Quit command to CLI Wallet
This commit is contained in:
pbattu123 2019-12-06 12:34:33 -04:00 committed by GitHub
commit 31e289c53d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
}
}
}
}