Skip to content

Commit

Permalink
remove deprecated response field (#571)
Browse files Browse the repository at this point in the history
  • Loading branch information
gianfra-t authored Dec 20, 2024
1 parent 0407091 commit a9fe025
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions clients/wallet/src/horizon/responses.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,6 @@ pub struct TransactionResponse {
#[serde(deserialize_with = "de_str_to_bytes")]
pub result_xdr: Vec<u8>,
#[serde(deserialize_with = "de_str_to_bytes")]
pub result_meta_xdr: Vec<u8>,
#[serde(deserialize_with = "de_str_to_bytes")]
pub fee_meta_xdr: Vec<u8>,
#[serde(deserialize_with = "de_str_to_bytes")]
pub memo_type: Vec<u8>,
Expand Down Expand Up @@ -236,7 +234,6 @@ impl Debug for TransactionResponse {
.field("operation_count", &self.operation_count)
.field("envelope_xdr", &debug_str_or_vec_u8!(&self.envelope_xdr))
.field("result_xdr", &debug_str_or_vec_u8!(&self.result_xdr))
.field("result_meta_xdr", &debug_str_or_vec_u8!(&self.result_meta_xdr))
.field("memo_type", &debug_str_or_vec_u8!(&self.memo_type))
.field("memo", &memo)
.finish()
Expand Down

0 comments on commit a9fe025

Please sign in to comment.