Sha256: caf44cf47fe31fd2c942d0ef968daa04181b45fb53083440cde78828b7f4e34f
Contents?: true
Size: 585 Bytes
Versions: 1
Compression:
Stored size: 585 Bytes
Contents
// Copyright (c) The Libra Core Contributors // SPDX-License-Identifier: Apache-2.0 syntax = "proto3"; package network; import "transaction.proto"; /* MempoolSyncMsg represents the messages exchanging between validators to keep * transactions in sync. The proto definition provides the spec on the wire so * that others can implement their mempool service in various languages. * Mempool service is responsible for sending and receiving MempoolSyncMsg * across validators. */ message MempoolSyncMsg { bytes peer_id = 1; repeated types.SignedTransaction transactions = 2; }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
libra_client-0.1.7 | protos/mempool.proto |