https://gitlab.com/tezos/tezos
Raw File
Tip revision: 13952298705129c6de6139a940a2a20c90e6fa67 authored by Pierrick Couderc on 24 January 2024, 11:44:08 UTC
EVM/Bench: make erc1155 take more than 4M gas
Tip revision: 1395229
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