Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Inverted check for flag for no auto keosd #5574

Merged
merged 1 commit into from
Sep 8, 2018
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
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