From a9fe025d0cc3251b15b393c042e2d917f860efbd Mon Sep 17 00:00:00 2001 From: gianfra-t <96739519+gianfra-t@users.noreply.github.com> Date: Fri, 20 Dec 2024 11:02:52 +0200 Subject: [PATCH] remove deprecated response field (#571) --- clients/wallet/src/horizon/responses.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/clients/wallet/src/horizon/responses.rs b/clients/wallet/src/horizon/responses.rs index a540fd63f..2a3148c26 100644 --- a/clients/wallet/src/horizon/responses.rs +++ b/clients/wallet/src/horizon/responses.rs @@ -202,8 +202,6 @@ pub struct TransactionResponse { #[serde(deserialize_with = "de_str_to_bytes")] pub result_xdr: Vec, #[serde(deserialize_with = "de_str_to_bytes")] - pub result_meta_xdr: Vec, - #[serde(deserialize_with = "de_str_to_bytes")] pub fee_meta_xdr: Vec, #[serde(deserialize_with = "de_str_to_bytes")] pub memo_type: Vec, @@ -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()