diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-06-11 09:44:13 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-06-12 16:48:41 +0100 |
commit | 63741d82644944f236c93e9f44cb988a38df1993 (patch) | |
tree | 067e2c60d2205ef97f7732ba9ebe0b586b456af2 /src/cryptonote_core/account.h | |
parent | Merge pull request #312 (diff) | |
download | monero-63741d82644944f236c93e9f44cb988a38df1993.tar.xz |
Integrated addresses (standard address plus payment id)
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 dcfd9e8d9..0f36029b5 100644 --- a/src/cryptonote_core/account.h +++ b/src/cryptonote_core/account.h @@ -60,6 +60,7 @@ namespace cryptonote 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(bool testnet); + std::string get_public_integrated_address_str(const crypto::hash &payment_id, bool testnet); uint64_t get_createtime() const { return m_creation_timestamp; } void set_createtime(uint64_t val) { m_creation_timestamp = val; } |