未验证 提交 29cb21a5 编写于 作者: K Kevin Heifner 提交者: GitHub

Merge pull request #5448 from EOSIO/correct-get-table-help-text

Correct cleos get table help text from 'contract' to 'account'.
......@@ -1971,7 +1971,7 @@ int main( int argc, char** argv ) {
uint32_t limit = 10;
string index_position;
auto getTable = get->add_subcommand( "table", localized("Retrieve the contents of a database table"), false);
getTable->add_option( "contract", code, localized("The contract who owns the table") )->required();
getTable->add_option( "account", code, localized("The account who owns the table") )->required();
getTable->add_option( "scope", scope, localized("The scope within the contract in which the table is found") )->required();
getTable->add_option( "table", table, localized("The name of the table as specified by the contract abi") )->required();
getTable->add_option( "-b,--binary", binary, localized("Return the value as BINARY rather than using abi to interpret as JSON") );
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册