tari_core 5.3.1

Core Tari protocol components
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2022 The Tari Project
// SPDX-License-Identifier: BSD-3-Clause

syntax = "proto3";

import "transaction.proto";
import "types.proto";

package tari.mempool;

message StateResponse{
    // List of transactions in unconfirmed pool.
    repeated tari.types.Transaction unconfirmed_pool = 1;
    // List of transactions in reorg pool.
    repeated tari.types.Signature reorg_pool = 4;
}