From: Esraa Jbara Date: Tue, 9 Nov 2021 08:57:27 +0000 (+0200) Subject: remove fee rate X-Git-Url: http://internal-gitweb-vhost/script/%22https:/database/enum.AnyDatabaseConfig.html?a=commitdiff_plain;h=8d76825d397a5f3fb600eb2ce10aa1d7bf0948c2;p=bitcoindevkit.org remove fee rate --- diff --git a/docs/_blog/hello-world.md b/docs/_blog/hello-world.md index 772dcc74bd..e0f0e8816a 100644 --- a/docs/_blog/hello-world.md +++ b/docs/_blog/hello-world.md @@ -152,7 +152,6 @@ let faucet_address = Address::from_str("mkHS9ne12qx9pS9VojpwU5xtRd4T7X7ZUt")?; let mut tx_builder = wallet.build_tx(); tx_builder .add_recipient(faucet_address.script_pubkey(), balance / 2) - .fee_rate(FeeRate::from_sat_per_vb(5.0)) .enable_rbf(); let (mut psbt, tx_details) = tx_builder.finish()?;