]> Untitled Git - bitcoindevkit.org/commitdiff
Fix spending policy blog post cli install features
authorthunderbiscuit <thunderbiscuit@protonmail.com>
Thu, 17 Mar 2022 17:24:03 +0000 (13:24 -0400)
committerthunderbiscuit <thunderbiscuit@protonmail.com>
Wed, 6 Apr 2022 02:45:37 +0000 (22:45 -0400)
content/authors/thunderbiscuit/_index.md
docs/_blog/spending_policy_demo.md
docs/bdk-cli/installation.md

index 98b1ec7298e679175598c04fb70e7894c3c0787a..5cdaff60de08f21b0e022968ff1004f51a446545 100644 (file)
@@ -1,8 +1,8 @@
 ---
-name: Thunderbiscuit
+name: thunderbiscuit
 photo:
 twitter: thunderB__
 mastodon: https://fosstodon.org/@thunderbiscuit
-github: https://github.com/thunderBiscuit
+github: https://github.com/thunderbiscuit
 web: https://thunderbiscuit.com/
 ---
index b0ebde02a251f15e4500138a6ea271d7d82d45c6..344afd596242318a422d7c2e669d956eba2db342 100644 (file)
@@ -3,7 +3,7 @@ title: "Spending Policy Demo"
 description: "Demonstrate how to use a descriptor wallet with different spending policies"
 authors:
     - Steve Myers
-    - Thunderbiscuit
+    - thunderbiscuit
 date: "2021-02-23"
 tags: ["guide", "descriptor"]
 permalink: "/blog/2021/02/spending-policy-demo/"
@@ -31,11 +31,11 @@ In a real-world wallet a longer relative time-lock would probably be used, but w
 ### Step 0: Install a recent version `bdk-cli`
 
 ```bash
-cargo install bdk-cli --features repl,electrum,esplora
+cargo install bdk-cli --features electrum
 
 # confirm bdk-cli is installed
 bdk-cli --version
-BDK CLI 0.2.0
+BDK CLI 0.4.0
 
 # bdk-cli usage can be explored with the `help` sub-command
 bdk-cli help
index cffb3d19590eb92db6dcadd8e0ad5935de84d2e1..0189df3cc4786adf4f7eb6519a3d32d8e1d3395b 100644 (file)
@@ -32,7 +32,7 @@ cargo install --git https://github.com/bitcoindevkit/bdk-cli --features=esplora-
 # all features with the async esplora client 
 cargo install --git https://github.com/bitcoindevkit/bdk-cli --features=esplora-reqwest,compiler
 
-# minimal install
+# minimal install (only repl feature is on by default)
 cargo install --git https://github.com/bitcoindevkit/bdk-cli
 ```