diff options
author | Thomas Winget <tewinget@gmail.com> | 2014-06-08 20:04:32 -0400 |
---|---|---|
committer | Thomas Winget <tewinget@gmail.com> | 2014-06-12 19:05:52 -0400 |
commit | da37b6f15b6eb1f7b4ac9802a3350413d303a5c9 (patch) | |
tree | 06a7aceb34d1e53ca4bfd28d3fbc13b5ef0d8a30 /src/cryptonote_core/account.h | |
parent | reworked command line args for simplewallet. (diff) | |
download | monero-da37b6f15b6eb1f7b4ac9802a3350413d303a5c9.tar.xz |
allow two-random-numbers wallet generation (but not as default)
Diffstat (limited to 'src/cryptonote_core/account.h')
-rw-r--r-- | src/cryptonote_core/account.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/account.h b/src/cryptonote_core/account.h index f07d4dd79..cb77d7c4e 100644 --- a/src/cryptonote_core/account.h +++ b/src/cryptonote_core/account.h @@ -31,7 +31,7 @@ namespace cryptonote { public: account_base(); - crypto::secret_key generate(const crypto::secret_key& recovery_key = crypto::secret_key(), bool recover = false); + crypto::secret_key generate(const crypto::secret_key& recovery_key = crypto::secret_key(), bool recover = false, bool two_random = false); const account_keys& get_keys() const; std::string get_public_address_str(); |