From f5ccf430d30d856df8c449e2833ac166b560a417 Mon Sep 17 00:00:00 2001 From: Jonathan Giszczak Date: Mon, 27 Aug 2018 17:14:01 -0500 Subject: [PATCH] Correct cleos get table help text from 'contract' to 'account'. --- programs/cleos/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/cleos/main.cpp b/programs/cleos/main.cpp index e478f42a2bd..f9af7ab84d8 100644 --- a/programs/cleos/main.cpp +++ b/programs/cleos/main.cpp @@ -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") );