Skip to content

Commit 85e90b4

Browse files
committed
Brings back the masp fee payment field in the wrapper response
1 parent a5d915a commit 85e90b4

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

webserver/src/response/transaction.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ pub struct WrapperTransactionResponse {
103103
pub gas_limit: String,
104104
pub gas_used: Option<u64>,
105105
pub amount_per_gas_unit: Option<f64>,
106+
pub masp_fee_payment: Option<String>,
106107
pub block_height: u64,
107108
pub inner_transactions: Vec<ShortInnerTransactionResponse>,
108109
pub exit_code: TransactionResultResponse,
@@ -121,6 +122,7 @@ impl WrapperTransactionResponse {
121122
gas_limit: wrapper.gas_limit.to_string(),
122123
gas_used: wrapper.gas_used,
123124
amount_per_gas_unit: wrapper.amount_per_gas_unit,
125+
masp_fee_payment: wrapper.masp_fee_payment,
124126
block_height: wrapper.block_height,
125127
inner_transactions: inners
126128
.into_iter()

0 commit comments

Comments
 (0)