Browse Source

Merge pull request #1218 from arkpar/eth_hostfix

Uninitialized member in EthereumPeer
cl-refactor
Gav Wood 10 years ago
parent
commit
42df6c484c
  1. 2
      libethereum/EthereumPeer.h

2
libethereum/EthereumPeer.h

@ -131,7 +131,7 @@ private:
DownloadSub m_sub;
/// Have we received a GetTransactions packet that we haven't yet answered?
bool m_requireTransactions;
bool m_requireTransactions = false;
Mutex x_knownBlocks;
h256Set m_knownBlocks; ///< Blocks that the peer already knows about (that don't need to be sent to them).

Loading…
Cancel
Save