Skip to content

Commit

Permalink
fix/ update wallet mod.rs to use same default version
Browse files Browse the repository at this point in the history
  • Loading branch information
benalleng committed Jan 2, 2025
1 parent 6661e23 commit 9017fca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/wallet/src/wallet/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1290,7 +1290,7 @@ impl Wallet {
}
Some(tx_builder::Version(x)) => x,
None if requirements.csv.is_some() => 2,
None => 1,
None => 2,
};

// We use a match here instead of a unwrap_or_else as it's way more readable :)
Expand Down

0 comments on commit 9017fca

Please sign in to comment.