https://gitlab.com/tezos/tezos
Raw File
Tip revision: 850c24fe410745d7a733dcdb000305edf45d3862 authored by Arvid Jakobsson on 28 March 2024, 10:44:27 UTC
CI: generate [debian_repository.yml]
Tip revision: 850c24f
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