Skip to content

Commit

Permalink
[Misc]: Fix Clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
satoshiotomakan committed Jan 16, 2025
1 parent 28ced94 commit 4f47e13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub trait BabylonOutputProtobuf {
) -> SigningResult<TransactionOutput>;
}

impl<'a, Context: UtxoContext> BabylonOutputProtobuf for OutputProtobuf<'a, Context> {
impl<Context: UtxoContext> BabylonOutputProtobuf for OutputProtobuf<'_, Context> {
fn babylon_staking(
&self,
staking: &Proto::mod_OutputBuilder::StakingOutput,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ pub trait BabylonUtxoProtobuf {
) -> SigningResult<(TransactionInput, UtxoToSign)>;
}

impl<'a, Context: UtxoContext> BabylonUtxoProtobuf for UtxoProtobuf<'a, Context> {
impl<Context: UtxoContext> BabylonUtxoProtobuf for UtxoProtobuf<'_, Context> {
fn babylon_staking_timelock(
&self,
timelock: &Proto::mod_InputBuilder::StakingTimelockPath,
Expand Down

0 comments on commit 4f47e13

Please sign in to comment.