From 60fb4f6bb0cd0071df95c1868cf8a6511c2eab27 Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Wed, 18 Sep 2019 17:21:41 -0400 Subject: [PATCH] Remove InventoryType::MsgCmpctBlock From BIP-152, which is not implemented by Zcash. --- zebra-chain/src/types.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/zebra-chain/src/types.rs b/zebra-chain/src/types.rs index fa548af0..3820e1c0 100644 --- a/zebra-chain/src/types.rs +++ b/zebra-chain/src/types.rs @@ -41,14 +41,6 @@ pub enum InventoryType { // XXX: Since we don't intend to include the bloom filter to // start, do we need this? MsgFilteredBlock = 0x03, - - /// Hash of a block header, but only to be used in getdata - /// message. Indicates the reply should be a cmpctblock - /// message. See - /// [BIP-152](https://github.com/bitcoin/bips/blob/master/bip-0152.mediawiki) - /// for more info. - // XXX We may not need this, pzec does not. - MsgCmpctBlock = 0x04, } /// Inventory Vector