Skip to content

Commit af60887

Browse files
committed
Merge bitcoin/bitcoin#31237: doc: Add missing 'blank=true' option in offline-signing-tutorial.md
ec375de doc: Add missing 'blank=true' option in offline-signing-tutorial.md (secp512k2) Pull request description: 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. ACKs for top commit: fanquake: ACK ec375de Tree-SHA512: 8c145e3ef1598c5e13f2aa89e496f76bfe2fc6f47d5e740963acad18dd1f782655a822dc234862af8e5a08060ab7fe1039a3dcfa68455a9143fe2d849975927c
2 parents 7a52665 + ec375de commit af60887

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

doc/offline-signing-tutorial.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ The `watch_only_wallet` wallet will be used to track and validate incoming trans
6060
```sh
6161
[online]$ ./build/src/bitcoin-cli -signet -named createwallet \
6262
wallet_name="watch_only_wallet" \
63-
disable_private_keys=true
63+
disable_private_keys=true \
64+
blank=true
6465

6566
{
6667
"name": "watch_only_wallet"

0 commit comments

Comments
 (0)