mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
doc: update multisig-tutorial.md to default wallet type
This commit is contained in:
parent
05957a888d
commit
5347c9732f
1 changed files with 3 additions and 3 deletions
|
@ -29,7 +29,7 @@ These three wallets should not be used directly for privacy reasons (public key
|
||||||
```bash
|
```bash
|
||||||
for ((n=1;n<=3;n++))
|
for ((n=1;n<=3;n++))
|
||||||
do
|
do
|
||||||
./src/bitcoin-cli -signet -named createwallet wallet_name="participant_${n}" descriptors=true
|
./src/bitcoin-cli -signet createwallet "participant_${n}"
|
||||||
done
|
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.
|
After that, `getwalletinfo` can be used to check if the wallet was created successfully.
|
||||||
|
|
||||||
```bash
|
```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"
|
./src/bitcoin-cli -signet -rpcwallet="multisig_wallet_01" importdescriptors "$multisig_desc"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue