diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-08-15 20:47:32 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-08-15 20:47:32 +0200 |
commit | 12c70fedc0f35ee93236320614184000bc706931 (patch) | |
tree | 6f6517202f04dac30eb2363f7f7bb624a3bda6bf /src/cryptonote_core/blockchain.h | |
parent | Merge pull request #2245 (diff) | |
parent | blockchain: remove a few unused variables (diff) | |
download | monero-12c70fedc0f35ee93236320614184000bc706931.tar.xz |
Merge pull request #2246
d732c73e blockchain: remove a few unused variables (moneromooo-monero)
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 aa61dc034..7137f50a7 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 @@ -943,8 +943,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; |