Skip to content

Commit

Permalink
node/cli: bugfix in remove_account
Browse files Browse the repository at this point in the history
  • Loading branch information
valdok committed Nov 24, 2023
1 parent 1c5249a commit 7dfd709
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beam/cli.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ int main(int argc, char* argv[])

if (vm.count(cli::OWNER_KEY_REMOVE_EP))
{
auto vEps = vm[cli::MULTI_OWNER_KEYS].as<std::vector<std::string> >();
auto vEps = vm[cli::OWNER_KEY_REMOVE_EP].as<std::vector<std::string> >();
assert(!vEps.empty());

for (auto& ep : vEps)
Expand Down

0 comments on commit 7dfd709

Please sign in to comment.