Add help for validation_create.

This commit is contained in:
Arthur Britto
2012-04-07 18:59:13 -07:00
parent 81ba0286a0
commit 840f8486ff
2 changed files with 1 additions and 2 deletions

View File

@@ -41,6 +41,7 @@ void printHelp()
cout << " unl_list" << endl; cout << " unl_list" << endl;
cout << " unl_reset" << endl; cout << " unl_reset" << endl;
cout << " unlock <passphrase>" << endl; cout << " unlock <passphrase>" << endl;
cout << " validation_create [<seed>|<pass_phrase>|<key>]" << endl;
} }
int parseCommandline(int argc, char* argv[]) int parseCommandline(int argc, char* argv[])

View File

@@ -431,8 +431,6 @@ static int etob(std::string& strData, std::vector<std::string> vsHuman)
// -2 if words are okay but parity is wrong. // -2 if words are okay but parity is wrong.
int eng2key(std::string& strKey, const std::string strHuman) int eng2key(std::string& strKey, const std::string strHuman)
{ {
using namespace boost::adaptors;
std::vector<std::string> vWords; std::vector<std::string> vWords;
std::string strFirst, strSecond; std::string strFirst, strSecond;
int rc=0; int rc=0;