Skip to content

change indentation in quit command #1684

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 28, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions libraries/wallet/wallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -859,12 +859,12 @@ class wallet_api_impl
return tx;
}

void quit()
{
ilog( "Quitting Cli Wallet ..." );
void quit()
{
ilog( "Quitting Cli Wallet ..." );

throw fc::canceled_exception();
}
throw fc::canceled_exception();
}

void save_wallet_file(string wallet_filename = "")
{
Expand Down Expand Up @@ -4024,7 +4024,7 @@ bool wallet_api::load_wallet_file( string wallet_filename )

void wallet_api::quit()
{
my->quit();
my->quit();
}

void wallet_api::save_wallet_file( string wallet_filename )
Expand Down