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

Commit

Permalink
Fix cleos REX help
Browse files Browse the repository at this point in the history
heifner committed May 6, 2019
1 parent e7d0fb2 commit 5fc783c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions programs/cleos/main.cpp
Original file line number Diff line number Diff line change
@@ -1706,8 +1706,8 @@ struct unstaketorex_subcommand {
auto unstaketorex = actionRoot->add_subcommand("unstaketorex", localized("Buy REX using staked tokens"));
unstaketorex->add_option("owner", owner_str, localized("Account buying REX tokens"))->required();
unstaketorex->add_option("receiver", receiver_str, localized("Account that tokens have been staked to"))->required();
unstaketorex->add_option("from_net", from_net_str, localized("Amount to be unstaked from CPU resources and used in REX purchase"))->required();
unstaketorex->add_option("from_cpu", from_cpu_str, localized("Amount to be unstaked from Net resources and used in REX purchase"))->required();
unstaketorex->add_option("from_net", from_net_str, localized("Amount to be unstaked from Net resources and used in REX purchase"))->required();
unstaketorex->add_option("from_cpu", from_cpu_str, localized("Amount to be unstaked from CPU resources and used in REX purchase"))->required();
add_standard_transaction_options(unstaketorex, "owner@active");
unstaketorex->set_callback([this] {
fc::variant act_payload = fc::mutable_variant_object()

0 comments on commit 5fc783c

Please sign in to comment.