Skip to content

Commit 4f47e13

Browse files
[Misc]: Fix Clippy warnings
1 parent 28ced94 commit 4f47e13

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rust/chains/tw_bitcoin/src/babylon/proto_builder/output_protobuf.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pub trait BabylonOutputProtobuf {
2828
) -> SigningResult<TransactionOutput>;
2929
}
3030

31-
impl<'a, Context: UtxoContext> BabylonOutputProtobuf for OutputProtobuf<'a, Context> {
31+
impl<Context: UtxoContext> BabylonOutputProtobuf for OutputProtobuf<'_, Context> {
3232
fn babylon_staking(
3333
&self,
3434
staking: &Proto::mod_OutputBuilder::StakingOutput,

rust/chains/tw_bitcoin/src/babylon/proto_builder/utxo_protobuf.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pub trait BabylonUtxoProtobuf {
3838
) -> SigningResult<(TransactionInput, UtxoToSign)>;
3939
}
4040

41-
impl<'a, Context: UtxoContext> BabylonUtxoProtobuf for UtxoProtobuf<'a, Context> {
41+
impl<Context: UtxoContext> BabylonUtxoProtobuf for UtxoProtobuf<'_, Context> {
4242
fn babylon_staking_timelock(
4343
&self,
4444
timelock: &Proto::mod_InputBuilder::StakingTimelockPath,

0 commit comments

Comments
 (0)