Skip to content

Commit

Permalink
fix: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
bodymindarts committed Nov 24, 2023
1 parent 40b8cc4 commit b08e5e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet/psbt_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ impl PsbtBuilder<InitialPsbtBuilderState> {
pub fn accept_wallets(mut self) -> PsbtBuilder<AcceptingWalletState> {
assert!(self.fee_rate.is_some());

let fee_rate = self.fee_rate_inner().clone();
let fee_rate = *self.fee_rate_inner();
if let Some(utxos) = self.cpfp_utxos.as_mut() {
let mut non_cpfp_utxos = HashSet::new();
for (keychain, utxos) in utxos.iter_mut() {
Expand Down

0 comments on commit b08e5e5

Please sign in to comment.