package tezos-shell

  1. Overview
  2. Docs
module type FILTER = sig ... end

Type of a protocol-specific mempool filter plug-in.

Dummy filter that does nothing

val register : (module FILTER) -> unit

Registers a mempool plug-in for a specific protocol (according to its Proto.hash).

val find : Tezos_crypto.Protocol_hash.t -> (module FILTER) option

Looks for a mempool plug-in for a specific protocol.