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.
Details:
Original Text:
This is achieved by using the
createwalletoptions:disable_private_keys=true, blank=true.
Original Command:
[online]$ ./build/src/bitcoin-cli -signet -named createwallet \
wallet_name="watch_only_wallet" \
disable_private_keys=true
Correction:
Added blank=true to the command to match the options described in the text.
Revised Command:
[online]$ ./build/src/bitcoin-cli -signet -named createwallet \
wallet_name="watch_only_wallet" \
disable_private_keys=true \
blank=true
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.