aboutsummaryrefslogtreecommitdiff
path: root/doc/multisig-tutorial.md
diff options
context:
space:
mode:
authorJon Atack <jon@atack.com>2022-03-10 11:57:44 +0100
committerJon Atack <jon@atack.com>2022-03-10 12:50:34 +0100
commit5347c9732ff24bfcdcd62d0291972c86c80558dc (patch)
treed1e0d8f6d9ba8be501d52613aa80a58fdb4f0ab9 /doc/multisig-tutorial.md
parent05957a888de98aa4b946b62747030d6c77cac488 (diff)
downloadbitcoin-5347c9732ff24bfcdcd62d0291972c86c80558dc.tar.xz
doc: update multisig-tutorial.md to default wallet type
Diffstat (limited to 'doc/multisig-tutorial.md')
-rw-r--r--doc/multisig-tutorial.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/multisig-tutorial.md b/doc/multisig-tutorial.md
index 0793040418..1d2b3244bc 100644
--- a/doc/multisig-tutorial.md
+++ b/doc/multisig-tutorial.md
@@ -29,7 +29,7 @@ These three wallets should not be used directly for privacy reasons (public key
```bash
for ((n=1;n<=3;n++))
do
- ./src/bitcoin-cli -signet -named createwallet wallet_name="participant_${n}" descriptors=true
+ ./src/bitcoin-cli -signet createwallet "participant_${n}"
done
```
@@ -109,7 +109,7 @@ Then import the descriptors created in the previous step using the `importdescri
After that, `getwalletinfo` can be used to check if the wallet was created successfully.
```bash
-./src/bitcoin-cli -signet -named createwallet wallet_name="multisig_wallet_01" disable_private_keys=true blank=true descriptors=true
+./src/bitcoin-cli -signet -named createwallet wallet_name="multisig_wallet_01" disable_private_keys=true blank=true
./src/bitcoin-cli -signet -rpcwallet="multisig_wallet_01" importdescriptors "$multisig_desc"
@@ -238,4 +238,4 @@ psbt_2=$(./src/bitcoin-cli -signet -rpcwallet="participant_2" walletprocesspsbt
finalized_psbt_hex=$(./src/bitcoin-cli -signet finalizepsbt $psbt_2 | jq -r '.hex')
./src/bitcoin-cli -signet sendrawtransaction $finalized_psbt_hex
-``` \ No newline at end of file
+```