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

Commit

Permalink
Merge pull request #5448 from EOSIO/correct-get-table-help-text
Browse files Browse the repository at this point in the history
Correct cleos get table help text from 'contract' to 'account'.
  • Loading branch information
heifner authored Aug 29, 2018
2 parents 05d5aee + f5ccf43 commit 29cb21a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programs/cleos/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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") );
Expand Down

0 comments on commit 29cb21a

Please sign in to comment.