aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet2.h
diff options
context:
space:
mode:
authortom <tewinget@gmail.com>2014-06-04 21:11:19 -0400
committerThomas Winget <tewinget@gmail.com>2014-06-12 19:05:51 -0400
commitf70bc3a345ea11190e5b40c0606bb222d7825ea8 (patch)
tree5c7a7d8b2edc0414fe452430cc1832ebb1dc750f /src/wallet/wallet2.h
parentmost functions prototyped/modified for wallet recovery (diff)
downloadmonero-f70bc3a345ea11190e5b40c0606bb222d7825ea8.tar.xz
defaulted new parameters in modified functions
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r--src/wallet/wallet2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h
index 87e1dcbd4..85ed344c3 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, const crypto::secret_key& recovery_param, bool recover = false);
+ void generate(const std::string& wallet, const std::string& password, const crypto::secret_key& recovery_param = crypto::secret_key(), bool recover = false);
void load(const std::string& wallet, const std::string& password);
void store();
cryptonote::account_base& get_account(){return m_account;}