Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
cancelrexorder_subcommand Struct Reference
Collaboration diagram for cancelrexorder_subcommand:

Public Member Functions

 cancelrexorder_subcommand (CLI::App *actionRoot)
 

Public Attributes

string owner_str
 
const name act_name { "cnclrexorder"_n }
 

Detailed Description

Definition at line 1943 of file main.cpp.

Constructor & Destructor Documentation

◆ cancelrexorder_subcommand()

cancelrexorder_subcommand::cancelrexorder_subcommand ( CLI::App * actionRoot)
inline

Definition at line 1947 of file main.cpp.

1947 {
1948 auto cancelrexorder = actionRoot->add_subcommand("cancelrexorder", localized("Cancel queued REX sell order if one exists"));
1949 cancelrexorder->add_option("owner", owner_str, localized("Owner account of sell order"))->required();
1950 add_standard_transaction_options(cancelrexorder, "owner@active");
1951 cancelrexorder->callback([this] {
1952 fc::variant act_payload = fc::mutable_variant_object()("owner", owner_str);
1953 auto accountPermissions = get_account_permissions(tx_permission, {name(owner_str), config::active_name});
1954 send_actions({create_action(accountPermissions, config::system_account_name, act_name, act_payload)});
1955 });
1956 }
std::string name
App * add_subcommand(std::string subcommand_name="", std::string subcommand_description="")
Add a subcommand. Inherits INHERITABLE and OptionDefaults, and help flag.
Definition CLI11.hpp:5538
Option * add_option(std::string option_name, callback_t option_callback, std::string option_description="", bool defaulted=false, std::function< std::string()> func={})
Definition CLI11.hpp:5099
CRTP * required(bool value=true)
Set the option as required.
Definition CLI11.hpp:3400
An order-preserving dictionary of variants.
stores null, int64, uint64, double, bool, string, std::vector<variant>, and variant_object's.
Definition variant.hpp:191
#define localized(str,...)
Definition localize.hpp:10
chain::action create_action(const vector< permission_level > &authorization, const account_name &code, const action_name &act, const fc::variant &args)
Definition main.cpp:683
vector< chain::permission_level > get_account_permissions(const vector< string > &permissions)
Definition main.cpp:238
void add_standard_transaction_options(CLI::App *cmd, string default_permission="")
Definition main.cpp:202
void send_actions(std::vector< chain::action > &&actions, packed_transaction::compression_type compression=packed_transaction::compression_type::none)
Definition main.cpp:616
vector< string > tx_permission
Definition main.cpp:198
Here is the call graph for this function:

Member Data Documentation

◆ act_name

const name cancelrexorder_subcommand::act_name { "cnclrexorder"_n }

Definition at line 1945 of file main.cpp.

1945{ "cnclrexorder"_n };

◆ owner_str

string cancelrexorder_subcommand::owner_str

Definition at line 1944 of file main.cpp.


The documentation for this struct was generated from the following file: