// 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; }