aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorwarptangent <warptangent@inbox.com>2014-12-06 01:46:41 -0800
committerwarptangent <warptangent@inbox.com>2014-12-06 01:47:05 -0800
commit2290eff6d61db63b93d38d4fad15ab0524afd926 (patch)
tree44b45c49771b4a5bbd2d2882b83a936906dcbdcd /src
parentupdate unbound from upstream (diff)
downloadmonero-2290eff6d61db63b93d38d4fad15ab0524afd926.tar.xz
replace lines with call to recently added print_seed()
Diffstat (limited to 'src')
-rw-r--r--src/simplewallet/simplewallet.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index e1e2a198b..64b1e1da4 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -218,10 +218,7 @@ bool simple_wallet::seed(const std::vector<std::string> &args/* = std::vector<st
if (success)
{
- success_msg_writer(true) << "\nPLEASE NOTE: the following 25 words can be used to recover access to your wallet. Please write them down and store them somewhere safe and secure. Please do not store them in your email or on file storage services outside of your immediate control.\n";
- boost::replace_nth(electrum_words, " ", 15, "\n");
- boost::replace_nth(electrum_words, " ", 7, "\n");
- std::cout << electrum_words << std::endl;
+ print_seed(electrum_words);
}
else
{