Skip to content

Commit 114754a

Browse files
committed
Merge bitcoin/bitcoin#24519: doc: update multisig-tutorial.md to descriptor wallet by default
5347c97 doc: update multisig-tutorial.md to default wallet type (Jon Atack) Pull request description: Follow-up to #24281 and bitcoin/bitcoin#24281 (comment). The default wallet type was changed to descriptor wallets in #23002. ACKs for top commit: laanwj: ACK 5347c97 michaelfolkson: ACK 5347c97 achow101: ACK 5347c97 theStack: Concept and code-review ACK 5347c97 Tree-SHA512: 8074a33ad253ecb7d3f78645a00c808c7c224996cc1748067928aa59ef31a58f24fcfc75169494b26a19c7fbbf23bbd78516ab4102bc52fa92f08f1f49b18b63
2 parents b8992f2 + 5347c97 commit 114754a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/multisig-tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ These three wallets should not be used directly for privacy reasons (public key
2929
```bash
3030
for ((n=1;n<=3;n++))
3131
do
32-
./src/bitcoin-cli -signet -named createwallet wallet_name="participant_${n}" descriptors=true
32+
./src/bitcoin-cli -signet createwallet "participant_${n}"
3333
done
3434
```
3535

@@ -109,7 +109,7 @@ Then import the descriptors created in the previous step using the `importdescri
109109
After that, `getwalletinfo` can be used to check if the wallet was created successfully.
110110

111111
```bash
112-
./src/bitcoin-cli -signet -named createwallet wallet_name="multisig_wallet_01" disable_private_keys=true blank=true descriptors=true
112+
./src/bitcoin-cli -signet -named createwallet wallet_name="multisig_wallet_01" disable_private_keys=true blank=true
113113

114114
./src/bitcoin-cli -signet -rpcwallet="multisig_wallet_01" importdescriptors "$multisig_desc"
115115

@@ -238,4 +238,4 @@ psbt_2=$(./src/bitcoin-cli -signet -rpcwallet="participant_2" walletprocesspsbt
238238
finalized_psbt_hex=$(./src/bitcoin-cli -signet finalizepsbt $psbt_2 | jq -r '.hex')
239239

240240
./src/bitcoin-cli -signet sendrawtransaction $finalized_psbt_hex
241-
```
241+
```

0 commit comments

Comments
 (0)