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

Commit

Permalink
Correct cleos get table help text from 'contract' to 'account'.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgiszczak committed Aug 27, 2018
1 parent 2a1b0ef commit f5ccf43
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 f5ccf43

Please sign in to comment.