Skip to content

Commit

Permalink
Inverted check for flag for no auto keosd. GH EOSIO#5199
Browse files Browse the repository at this point in the history
  • Loading branch information
brianjohnson5972 committed Sep 7, 2018
1 parent 038da9f commit 6adc022
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programs/cleos/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ void try_local_port( const string& lo_address, uint16_t port, uint32_t duration
}

void ensure_keosd_running(CLI::App* app) {
if (!no_auto_keosd)
if (no_auto_keosd)
return;
// get, version, net do not require keosd
if (tx_skip_sign || app->got_subcommand("get") || app->got_subcommand("version") || app->got_subcommand("net"))
Expand Down

0 comments on commit 6adc022

Please sign in to comment.