https://gitlab.com/tezos/tezos
Raw File
Tip revision: e9435573883a3e74deb8ef581f6900bab315b642 authored by pecornilleau on 26 January 2024, 11:36:38 UTC
Doc: initialize evm kernel doc
Tip revision: e943557
gossipsub_automaton.mli
(*****************************************************************************)
(*                                                                           *)
(* SPDX-License-Identifier: MIT                                              *)
(* Copyright (c) 2023 Nomadic Labs. <contact@nomadic-labs.com>               *)
(*                                                                           *)
(*****************************************************************************)

module Make (C : Gossipsub_intf.AUTOMATON_CONFIG) :
  Gossipsub_intf.AUTOMATON
    with type Time.t = C.Time.t
     and type Span.t = C.Time.span
     and module Peer = C.Subconfig.Peer
     and module Topic = C.Subconfig.Topic
     and module Message_id = C.Subconfig.Message_id
     and module Message = C.Subconfig.Message
back to top