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:
parent
2c90f8e08c
commit
ec375de39f
1 changed files with 2 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue