We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5d915a commit 85e90b4Copy full SHA for 85e90b4
1 file changed
webserver/src/response/transaction.rs
@@ -103,6 +103,7 @@ pub struct WrapperTransactionResponse {
103
pub gas_limit: String,
104
pub gas_used: Option<u64>,
105
pub amount_per_gas_unit: Option<f64>,
106
+ pub masp_fee_payment: Option<String>,
107
pub block_height: u64,
108
pub inner_transactions: Vec<ShortInnerTransactionResponse>,
109
pub exit_code: TransactionResultResponse,
@@ -121,6 +122,7 @@ impl WrapperTransactionResponse {
121
122
gas_limit: wrapper.gas_limit.to_string(),
123
gas_used: wrapper.gas_used,
124
amount_per_gas_unit: wrapper.amount_per_gas_unit,
125
+ masp_fee_payment: wrapper.masp_fee_payment,
126
block_height: wrapper.block_height,
127
inner_transactions: inners
128
.into_iter()
0 commit comments