aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet2.h
diff options
context:
space:
mode:
authorThomas Winget <tewinget@gmail.com>2014-06-04 18:59:47 -0400
committerThomas Winget <tewinget@gmail.com>2014-06-12 19:05:51 -0400
commit4f382b383005d09f6056371d0fecdc8b6ce37a08 (patch)
treeaf6a07f7b59bb432891ec0bf47772e3517a17c1d /src/wallet/wallet2.h
parentadded vim swap files to .gitignore (diff)
downloadmonero-4f382b383005d09f6056371d0fecdc8b6ce37a08.tar.xz
most functions prototyped/modified for wallet recovery
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r--src/wallet/wallet2.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h
index 9ca586425..87e1dcbd4 100644
--- a/src/wallet/wallet2.h
+++ b/src/wallet/wallet2.h
@@ -97,7 +97,7 @@ namespace tools
END_SERIALIZE()
};
- void generate(const std::string& wallet, const std::string& password);
+ void generate(const std::string& wallet, const std::string& password, const crypto::secret_key& recovery_param, bool recover = false);
void load(const std::string& wallet, const std::string& password);
void store();
cryptonote::account_base& get_account(){return m_account;}
@@ -227,6 +227,7 @@ namespace boost
namespace tools
{
+
namespace detail
{
//----------------------------------------------------------------------------------------------------