Skip to content

Commit

Permalink
fixup! Merge branch 'yuji/fix-ibc-masp-tx-extraction' (#3490)
Browse files Browse the repository at this point in the history
  • Loading branch information
brentstone committed Jul 11, 2024
1 parent 62d92e0 commit 96265cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/tx/src/data/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,16 +191,16 @@ pub struct ExtendedTxResult<T> {
pub tx_result: TxResult<T>,
/// The optional references to masp sections
pub masp_tx_refs: MaspTxRefs,
/// The flag for IBC shielding transfer
pub is_ibc_shielding: bool,
/// The optional data section hashes of IBC transaction
pub ibc_tx_data_refs: IbcTxDataRefs,
}

impl<T> Default for ExtendedTxResult<T> {
fn default() -> Self {
Self {
tx_result: Default::default(),
masp_tx_refs: Default::default(),
is_ibc_shielding: Default::default(),
ibc_tx_data_refs: Default::default(),
}
}
}
Expand Down

0 comments on commit 96265cb

Please sign in to comment.