0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-03-05 14:06:27 -05:00

doc: Add missing 'blank=true' option in offline-signing-tutorial.md

Issue:

The text mentions that the `createwallet` command should use the options `disable_private_keys=true, blank=true`, but the provided command only includes `disable_private_keys=true`, missing the `blank=true` option.

Correction:

Added `blank=true` to the command to match the options described in the text.

Explanation:

The `blank=true` option is necessary to create a blank wallet. Including this option ensures the command matches the options specified in the text.
This commit is contained in:
secp512k2 2024-11-06 10:36:30 -08:00 committed by GitHub
parent 2c90f8e08c
commit ec375de39f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -60,7 +60,8 @@ The `watch_only_wallet` wallet will be used to track and validate incoming trans
```sh
[online]$ ./build/src/bitcoin-cli -signet -named createwallet \
wallet_name="watch_only_wallet" \
disable_private_keys=true
disable_private_keys=true \
blank=true
{
"name": "watch_only_wallet"