diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index f6494f46..6b7150e6 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -1263,7 +1263,7 @@ bool simple_wallet::print_address(const std::vector &args/* = std:: bool simple_wallet::show_seed(const std::vector &args) { success_msg_writer() << "Here's your wallet's seed phrase. Write it down and keep in a safe place."; - success_msg_writer(true) << "Anyone who knows the following 25 words can access you wallet:"; + success_msg_writer(true) << "Anyone who knows the following 25 words can access your wallet:"; std::cout << m_wallet->get_account().get_restore_braindata() << std::endl << std::flush; return true; } @@ -1271,7 +1271,7 @@ bool simple_wallet::show_seed(const std::vector &args) bool simple_wallet::spendkey(const std::vector &args) { message_writer(epee::log_space::console_color_red, true, std::string()) - << "WARNING! Anyone who knows the following secret key can access you wallet and spend your coins."; + << "WARNING! Anyone who knows the following secret key can access your wallet and spend your coins."; const account_keys& keys = m_wallet->get_account().get_keys(); std::cout << "secret: " << epee::string_tools::pod_to_hex(keys.m_spend_secret_key) << std::endl; @@ -1283,7 +1283,7 @@ bool simple_wallet::spendkey(const std::vector &args) bool simple_wallet::viewkey(const std::vector &args) { message_writer(epee::log_space::console_color_yellow, false, std::string()) - << "WARNING! Anyone who knows the following secret key can view you wallet (but can not spend your coins)."; + << "WARNING! Anyone who knows the following secret key can view your wallet (but can not spend your coins)."; const account_keys& keys = m_wallet->get_account().get_keys(); std::cout << "secret: " << epee::string_tools::pod_to_hex(keys.m_view_secret_key) << std::endl;