From a9bc2aa6e59a6283798534eac403fa2b436e0a62 Mon Sep 17 00:00:00 2001 From: Arthur Britto Date: Wed, 21 Mar 2012 16:55:42 -0700 Subject: [PATCH] Add usage for new unl commands. --- src/main.cpp | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index cb859f911d..d3e019afd7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -25,19 +25,22 @@ void printHelp() cout << "options: " << endl; cout << " -" << endl; cout << "commands: " << endl; - cout << " createfamily []" << endl; cout << " accountinfo :" << endl; - cout << " newaccount []" << endl; - cout << " lock " << endl; - cout << " unlock " << endl; - cout << " familyinfo" << endl; cout << " connect []" << endl; + cout << " createfamily []" << endl; + cout << " familyinfo" << endl; + cout << " ledger" << endl; + cout << " lock " << endl; + cout << " newaccount []" << endl; cout << " peers" << endl; cout << " sendto []" << endl; - cout << " tx" << endl; - cout << " ledger" << endl; cout << " stop" << endl; - + cout << " tx" << endl; + cout << " unl_add []" << endl; + cout << " unl_delete " << endl; + cout << " unl_list" << endl; + cout << " unl_reset" << endl; + cout << " unlock " << endl; } int parseCommandline(int argc, char* argv[])