aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet2.cpp
diff options
context:
space:
mode:
authorwarptangent <warptangent@inbox.com>2014-11-06 14:36:36 -0800
committerwarptangent <warptangent@inbox.com>2014-12-01 14:36:24 -0800
commit3dd19c4cd426c06a1dfb5d631174cb3b038f1f4c (patch)
tree297651294e261a7dd2753c3dbd1fa4632b8f8f8e /src/wallet/wallet2.cpp
parentMerge pull request #192 (diff)
downloadmonero-3dd19c4cd426c06a1dfb5d631174cb3b038f1f4c.tar.xz
prompt for seed language and error handling
- "seed" simplewallet command was only displaying seed if wallet was newly generated
Diffstat (limited to 'src/wallet/wallet2.cpp')
-rw-r--r--src/wallet/wallet2.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp
index 6c271f037..066b006b4 100644
--- a/src/wallet/wallet2.cpp
+++ b/src/wallet/wallet2.cpp
@@ -91,6 +91,12 @@ void wallet2::init(const std::string& daemon_address, uint64_t upper_transaction
//----------------------------------------------------------------------------------------------------
bool wallet2::get_seed(std::string& electrum_words)
{
+ if (seed_language.empty())
+ {
+ std::cout << "seed_language not set" << std::endl;
+ return false;
+ }
+
crypto::ElectrumWords::bytes_to_words(get_account().get_keys().m_spend_secret_key, electrum_words, seed_language);
crypto::secret_key second;
@@ -101,6 +107,13 @@ bool wallet2::get_seed(std::string& electrum_words)
return memcmp(second.data,get_account().get_keys().m_view_secret_key.data, sizeof(crypto::secret_key)) == 0;
}
/*!
+ * \brief Gets the seed language
+ */
+const std::string wallet2::get_seed_language()
+{
+ return seed_language;
+}
+/*!
* \brief Sets the seed language
* \param language Seed language to set to
*/