Merge pull request #63 from cogutvalera/valera_issue_1050

add quit command to cli_wallet #1050
This commit is contained in:
Peter Conrad 2018-07-25 16:42:33 +02:00 committed by GitHub
commit 5469bb960a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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