diff options
author | Jesus Ramirez <jesus.rami.serra@gmail.com> | 2019-05-29 10:12:47 -0400 |
---|---|---|
committer | Jesus Ramirez <jesus.rami.serra@gmail.com> | 2019-05-29 10:12:47 -0400 |
commit | 270a3ae58b3f059aca1f9b98521f93247691d870 (patch) | |
tree | 01302d838f7185b845a43bd720503bdcb2d0b9f0 /src/cryptonote_core | |
parent | Merge pull request #5548 (diff) | |
download | monero-270a3ae58b3f059aca1f9b98521f93247691d870.tar.xz |
Unused private member m_miner_address
Diffstat (limited to 'src/cryptonote_core')
-rw-r--r-- | src/cryptonote_core/cryptonote_core.cpp | 1 | ||||
-rw-r--r-- | src/cryptonote_core/cryptonote_core.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/cryptonote_core/cryptonote_core.cpp b/src/cryptonote_core/cryptonote_core.cpp index be1ea5a17..745735c65 100644 --- a/src/cryptonote_core/cryptonote_core.cpp +++ b/src/cryptonote_core/cryptonote_core.cpp @@ -214,7 +214,6 @@ namespace cryptonote m_mempool(m_blockchain_storage), m_blockchain_storage(m_mempool), m_miner(this), - m_miner_address(boost::value_initialized<account_public_address>()), m_starter_message_showed(false), m_target_blockchain_height(0), m_checkpoints_path(""), diff --git a/src/cryptonote_core/cryptonote_core.h b/src/cryptonote_core/cryptonote_core.h index 2fcf26a17..badbaf936 100644 --- a/src/cryptonote_core/cryptonote_core.h +++ b/src/cryptonote_core/cryptonote_core.h @@ -1014,7 +1014,6 @@ namespace cryptonote //m_miner and m_miner_addres are probably temporary here miner m_miner; //!< miner instance - account_public_address m_miner_address; //!< address to mine to (for miner instance) std::string m_config_folder; //!< folder to look in for configs and other files |