From 78f0b8aab0844166de6288410f424cbd54121384 Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Tue, 3 Dec 2019 01:17:40 -0500 Subject: [PATCH] Remove NODE_BLOOM service bit We do not support bloom filters. --- zebra-network/src/protocol/external/types.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/zebra-network/src/protocol/external/types.rs b/zebra-network/src/protocol/external/types.rs index fd81f3b79..d5b3a1070 100644 --- a/zebra-network/src/protocol/external/types.rs +++ b/zebra-network/src/protocol/external/types.rs @@ -31,8 +31,6 @@ bitflags! { /// blocks, as opposed to a light client that makes network requests but /// does not provide network services. const NODE_NETWORK = (1 << 0); - /// NODE_BLOOM means that the node supports bloom-filtered connections. - const NODE_BLOOM = (1 << 2); } }