From 35a61f5759ac641ee968ce82cdfe30780353aae4 Mon Sep 17 00:00:00 2001 From: LLFourn Date: Sat, 30 Jan 2021 13:05:23 +1100 Subject: [PATCH] Fix whitespace and curse emacs --- CHANGELOG.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1071f91c..71996301 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,7 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Remove `BlockchainMarker`, `OfflineClient` and `OfflineWallet` in favor of just using the unit type to mark for a missing client. - Upgrade `tokio` to `1.0`. - + #### Transaction Creation Overhaul The `TxBuilder` is now created from the `build_tx` or `build_fee_bump` functions on wallet and the diff --git a/README.md b/README.md index 7a173658..ef491d03 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ fn main() -> Result<(), bdk::Error> { wallet.sync(noop_progress(), None)?; let send_to = wallet.get_new_address()?; - let (psbt, details) = { + let (psbt, details) = { let mut builder = wallet.build_tx(); builder .add_recipient(send_to.script_pubkey(), 50_000)