Skip to content

Commit 544fc21

Browse files
committed
Fix formatting in docs
1 parent ac30bda commit 544fc21

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/wallet/coin_selection.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,16 @@
6969
//!
7070
//! let calculated_waste = Some(
7171
//! calculate_waste(
72-
//! required_utxos.into_iter().chain(optional_utxos).collect::<Vec<WeightedUtxo>>(),
72+
//! required_utxos
73+
//! .into_iter()
74+
//! .chain(optional_utxos)
75+
//! .collect::<Vec<WeightedUtxo>>(),
7376
//! None,
7477
//! amount_needed,
7578
//! fee_rate,
7679
//! FeeRate::from_sat_per_vb(10.0),
77-
//! ).unwrap()
80+
//! )
81+
//! .unwrap(),
7882
//! );
7983
//!
8084
//! Ok(CoinSelectionResult::new(

0 commit comments

Comments
 (0)