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