diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-06-20 12:31:02 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-06-20 17:33:06 +0100 |
commit | 6a0f61d80087259d7fa2e62df0e6cf68764dc3a4 (patch) | |
tree | 5c91d4962664db039a964ff7238e56ab70f5de7d /src/cryptonote_core/account.h | |
parent | wallet2: fix write_watch_only_wallet comment description (diff) | |
download | monero-6a0f61d80087259d7fa2e62df0e6cf68764dc3a4.tar.xz |
account: allow creating an account from a public address and view secret key
Diffstat (limited to 'src/cryptonote_core/account.h')
-rw-r--r-- | src/cryptonote_core/account.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cryptonote_core/account.h b/src/cryptonote_core/account.h index 909fa7ef6..088363bf1 100644 --- a/src/cryptonote_core/account.h +++ b/src/cryptonote_core/account.h @@ -58,6 +58,7 @@ namespace cryptonote public: account_base(); crypto::secret_key generate(const crypto::secret_key& recovery_key = crypto::secret_key(), bool recover = false, bool two_random = false); + void create_from_viewkey(const cryptonote::account_public_address& address, const crypto::secret_key& viewkey); const account_keys& get_keys() const; std::string get_public_address_str(bool testnet) const; std::string get_public_integrated_address_str(const crypto::hash &payment_id, bool testnet) const; |