Remove NODE_BLOOM service bit

We do not support bloom filters.
This commit is contained in:
Deirdre Connolly 2019-12-03 01:17:40 -05:00 committed by Deirdre Connolly
parent 3c26092b01
commit 78f0b8aab0
1 changed files with 0 additions and 2 deletions

View File

@ -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);
}
}