From c9582e490c6baa92211c4e56d03bcc79d7f61235 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Tue, 7 Oct 2014 21:08:58 +0200 Subject: [PATCH] Windows build fix. --- libethereum/EthereumHost.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libethereum/EthereumHost.h b/libethereum/EthereumHost.h index 12ce28f23..a4ccf5383 100644 --- a/libethereum/EthereumHost.h +++ b/libethereum/EthereumHost.h @@ -72,7 +72,7 @@ public: DownloadMan const& downloadMan() const { return m_man; } bool isSyncing() const { return !!m_syncer; } - bool isBanned(h512 _id) const { return m_banned.count(_id); } + bool isBanned(h512 _id) const { return !!m_banned.count(_id); } private: /// Session is tell us that we may need (re-)syncing with the peer.