diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-08-03 11:26:55 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-08-03 11:26:55 +0100 |
commit | d732c73e71232328f039311760359b85823116bc (patch) | |
tree | 8056ecb98808a7f7214b6cc081b172bc10cab634 /src/cryptonote_core/blockchain.h | |
parent | Merge pull request #2159 (diff) | |
download | monero-d732c73e71232328f039311760359b85823116bc.tar.xz |
blockchain: remove a few unused variables
Diffstat (limited to 'src/cryptonote_core/blockchain.h')
-rw-r--r-- | src/cryptonote_core/blockchain.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/cryptonote_core/blockchain.h b/src/cryptonote_core/blockchain.h index 4f2e4f0d3..35b1ce9f5 100644 --- a/src/cryptonote_core/blockchain.h +++ b/src/cryptonote_core/blockchain.h @@ -585,7 +585,7 @@ namespace cryptonote * * @return true if Blockchain is having the chain stored currently, else false */ - bool is_storing_blockchain()const{return m_is_blockchain_storing;} + bool is_storing_blockchain()const{return false;} /** * @brief gets the difficulty of the block with a given height @@ -931,8 +931,6 @@ namespace cryptonote checkpoints m_checkpoints; - std::atomic<bool> m_is_in_checkpoint_zone; - std::atomic<bool> m_is_blockchain_storing; bool m_enforce_dns_checkpoints; HardFork *m_hardfork; |