File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ These three wallets should not be used directly for privacy reasons (public key
29
29
``` bash
30
30
for (( n= 1 ;n<= 3 ;n++ ))
31
31
do
32
- ./src/bitcoin-cli -signet -named createwallet wallet_name= " participant_${n} " descriptors=true
32
+ ./src/bitcoin-cli -signet createwallet " participant_${n} "
33
33
done
34
34
```
35
35
@@ -109,7 +109,7 @@ Then import the descriptors created in the previous step using the `importdescri
109
109
After that, ` getwalletinfo ` can be used to check if the wallet was created successfully.
110
110
111
111
``` 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
113
113
114
114
./src/bitcoin-cli -signet -rpcwallet=" multisig_wallet_01" importdescriptors " $multisig_desc "
115
115
@@ -238,4 +238,4 @@ psbt_2=$(./src/bitcoin-cli -signet -rpcwallet="participant_2" walletprocesspsbt
238
238
finalized_psbt_hex=$( ./src/bitcoin-cli -signet finalizepsbt $psbt_2 | jq -r ' .hex' )
239
239
240
240
./src/bitcoin-cli -signet sendrawtransaction $finalized_psbt_hex
241
- ```
241
+ ```
You can’t perform that action at this time.
0 commit comments