diff --git a/chain-network/proto/watch.proto b/chain-network/proto/watch.proto index dd98085f6..0272a4042 100644 --- a/chain-network/proto/watch.proto +++ b/chain-network/proto/watch.proto @@ -17,21 +17,6 @@ message SyncMultiverseRequest { message BlockId { bytes content = 1; } -message MempoolEvent { - bytes fragment_id = 1; - oneof event { - MempoolFragmentInserted inserted = 2; - MempoolFragmentRejected rejected = 3; - MempoolFragmentInABlock in_a_block = 4; - }; -} - -message MempoolFragmentInserted {} - -message MempoolFragmentRejected { string reason = 1; } - -message MempoolFragmentInABlock { BlockId block = 1; } - service Watch { // get a stream of blocks succesfully processed by the node, this means they // are already validated. @@ -41,10 +26,7 @@ service Watch { // get tip updates rpc TipSubscription(TipSubscriptionRequest) returns (stream BlockId); - rpc MempoolSubscription(MempoolSubscriptionRequest) - returns (stream MempoolEvent); - // fetch all blocks from the given initial chainlength to the tip, from all // possible branches and in increasing order rpc SyncMultiverse(SyncMultiverseRequest) returns (stream Block); -} \ No newline at end of file +}