Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bdk-cli default features install #92

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/authors/thunderbiscuit/_index.md
Original file line number Diff line number Diff line change
@@ -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/
---
6 changes: 3 additions & 3 deletions docs/_blog/spending_policy_demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/"
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/bdk-cli/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down