Add RPC ripple command and improve wallet_propose.

This commit is contained in:
Arthur Britto
2012-08-13 17:05:35 -07:00
parent 05304cc1fc
commit 9e41cac0da
5 changed files with 299 additions and 30 deletions

View File

@@ -58,6 +58,7 @@ void printHelp(const po::options_description& desc)
cout << " password_fund <seed> <paying_account> [<account>]" << endl;
cout << " password_set <master_seed> <regular_seed> [<account>]" << endl;
cout << " peers" << endl;
cout << " ripple ..." << endl;
cout << " ripple_lines_get <account>|<nickname>|<account_public_key> [<index>]" << endl;
cout << " ripple_line_set <seed> <paying_account> <destination_account> <limit_amount> <currency> [<quality_in>] [<quality_out>]" << endl;
cout << " send <seed> <paying_account> <account_id> <amount> [<currency>] [<send_max>] [<send_currency>]" << endl;
@@ -75,7 +76,7 @@ void printHelp(const po::options_description& desc)
cout << " wallet_accounts <seed>" << endl;
cout << " wallet_claim <master_seed> <regular_seed> [<source_tag>] [<account_annotation>]" << endl;
cout << " wallet_seed [<seed>|<passphrase>|<passkey>]" << endl;
cout << " wallet_propose" << endl;
cout << " wallet_propose [<passphrase>]" << endl;
}
int main(int argc, char* argv[])