Skip to content

Commit

Permalink
fix errant conflict markers
Browse files Browse the repository at this point in the history
  • Loading branch information
redshiftzero committed Dec 12, 2024
1 parent 8b1bcd8 commit 9da6487
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions crates/core/component/shielded-pool/src/ics20_withdrawal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,8 @@ impl From<Ics20Withdrawal> for pb::Ics20Withdrawal {
timeout_time: w.timeout_time,
source_channel: w.source_channel.to_string(),
use_compat_address: w.use_compat_address,
<<<<<<< HEAD
use_transparent_address: w.use_transparent_address,
=======
ics20_memo: w.ics20_memo.to_string(),
>>>>>>> release/v0.81.x
}
}
}
Expand Down Expand Up @@ -162,11 +159,8 @@ impl TryFrom<pb::Ics20Withdrawal> for Ics20Withdrawal {
timeout_time: s.timeout_time,
source_channel: ChannelId::from_str(&s.source_channel)?,
use_compat_address: s.use_compat_address,
<<<<<<< HEAD
use_transparent_address: s.use_transparent_address,
=======
ics20_memo: s.ics20_memo,
>>>>>>> release/v0.81.x
})
}
}
Expand Down

0 comments on commit 9da6487

Please sign in to comment.