Skip to content

Commit e6c1494

Browse files
committed
Remove an unnecessary Boxing in our anchor Wallet::sign_psbt
1 parent 217a5b0 commit e6c1494

File tree

1 file changed

+1
-1
lines changed
  • lightning/src/events/bump_transaction

1 file changed

+1
-1
lines changed

lightning/src/events/bump_transaction/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ where
572572
}
573573

574574
fn sign_psbt<'a>(&'a self, psbt: Psbt) -> AsyncResult<'a, Transaction> {
575-
Box::pin(async move { self.source.sign_psbt(psbt).await })
575+
self.source.sign_psbt(psbt)
576576
}
577577
}
578578

0 commit comments

Comments
 (0)