Skip to content

Commit

Permalink
[fix]: make TransactionValue::error field public (#4609)
Browse files Browse the repository at this point in the history
Signed-off-by: Marin Veršić <[email protected]>
  • Loading branch information
mversic authored May 17, 2024
1 parent 5f1f5b8 commit 9dc9b23
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion data_model/src/transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,10 @@ pub mod model {
}

/// Transaction Value used in Instructions and Queries
#[derive(Debug, Clone, PartialEq, Eq, Decode, Encode, Deserialize, Serialize, IntoSchema)]
#[derive(
Debug, Clone, PartialEq, Eq, Getters, Decode, Encode, Deserialize, Serialize, IntoSchema,
)]
#[getset(get = "pub")]
#[ffi_type]
pub struct TransactionValue {
/// Committed transaction
Expand Down

0 comments on commit 9dc9b23

Please sign in to comment.