https://gitlab.com/tezos/tezos
Raw File
Tip revision: ce80cbe88a8ffea8bc7633df5da9e9758bbd3f9f authored by Marge Bot on 08 February 2024, 12:05:00 UTC
Merge tezos/tezos!11890: EVM: fix build setup (Makefile and CI)
Tip revision: ce80cbe
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