miden_node_proto/generated/
transaction.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// This file is @generated by prost-build.
/// Represents a transaction ID.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct TransactionId {
    /// The transaction ID.
    #[prost(message, optional, tag = "1")]
    pub id: ::core::option::Option<super::digest::Digest>,
}
/// Represents a transaction summary.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TransactionSummary {
    /// A unique 32-byte identifier of a transaction.
    #[prost(message, optional, tag = "1")]
    pub transaction_id: ::core::option::Option<TransactionId>,
    /// The block number in which the transaction was executed.
    #[prost(fixed32, tag = "2")]
    pub block_num: u32,
    /// The ID of the account affected by the transaction.
    #[prost(message, optional, tag = "3")]
    pub account_id: ::core::option::Option<super::account::AccountId>,
}