aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2015-06-11 10:26:58 +0200
committerRiccardo Spagni <ric@spagni.net>2015-06-11 10:27:00 +0200
commit5bee2d2edfee201668269cd03381ad416ce95d75 (patch)
treee27d2b3f60ebe0c59feb677e70db99719dcee25d /src/cryptonote_core
parentMerge pull request #306 (diff)
parentwallet: add watch only wallet support (diff)
downloadmonero-5bee2d2edfee201668269cd03381ad416ce95d75.tar.xz
Merge pull request #303
c882af6 wallet: add watch only wallet support (moneromooo-monero) f7767c6 account: add a forget_spend_key method (moneromooo-monero)
Diffstat (limited to 'src/cryptonote_core')
-rw-r--r--src/cryptonote_core/account.cpp5
-rw-r--r--src/cryptonote_core/account.h2
2 files changed, 7 insertions, 0 deletions
diff --git a/src/cryptonote_core/account.cpp b/src/cryptonote_core/account.cpp
index a4de8fb25..55e368836 100644
--- a/src/cryptonote_core/account.cpp
+++ b/src/cryptonote_core/account.cpp
@@ -59,6 +59,11 @@ DISABLE_VS_WARNINGS(4244 4345)
m_keys = account_keys();
}
//-----------------------------------------------------------------
+ void account_base::forget_spend_key()
+ {
+ m_keys.m_spend_secret_key = crypto::secret_key();
+ }
+ //-----------------------------------------------------------------
crypto::secret_key account_base::generate(const crypto::secret_key& recovery_key, bool recover, bool two_random)
{
crypto::secret_key first = generate_keys(m_keys.m_account_address.m_spend_public_key, m_keys.m_spend_secret_key, recovery_key, recover);
diff --git a/src/cryptonote_core/account.h b/src/cryptonote_core/account.h
index 46f14fcbb..dcfd9e8d9 100644
--- a/src/cryptonote_core/account.h
+++ b/src/cryptonote_core/account.h
@@ -67,6 +67,8 @@ namespace cryptonote
bool load(const std::string& file_path);
bool store(const std::string& file_path);
+ void forget_spend_key();
+
template <class t_archive>
inline void serialize(t_archive &a, const unsigned int /*ver*/)
{