account: add a couple consts
This commit is contained in:
parent
63741d8264
commit
7bd6efe313
|
@ -98,13 +98,13 @@ DISABLE_VS_WARNINGS(4244 4345)
|
|||
return m_keys;
|
||||
}
|
||||
//-----------------------------------------------------------------
|
||||
std::string account_base::get_public_address_str(bool testnet)
|
||||
std::string account_base::get_public_address_str(bool testnet) const
|
||||
{
|
||||
//TODO: change this code into base 58
|
||||
return get_account_address_as_str(testnet, m_keys.m_account_address);
|
||||
}
|
||||
//-----------------------------------------------------------------
|
||||
std::string account_base::get_public_integrated_address_str(const crypto::hash &payment_id, bool testnet)
|
||||
std::string account_base::get_public_integrated_address_str(const crypto::hash &payment_id, bool testnet) const
|
||||
{
|
||||
//TODO: change this code into base 58
|
||||
return get_account_integrated_address_as_str(testnet, m_keys.m_account_address, payment_id);
|
||||
|
|
|
@ -59,8 +59,8 @@ namespace cryptonote
|
|||
account_base();
|
||||
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);
|
||||
std::string get_public_address_str(bool testnet) const;
|
||||
std::string get_public_integrated_address_str(const crypto::hash &payment_id, bool testnet) const;
|
||||
|
||||
uint64_t get_createtime() const { return m_creation_timestamp; }
|
||||
void set_createtime(uint64_t val) { m_creation_timestamp = val; }
|
||||
|
|
Loading…
Reference in New Issue