nested segwit by default

This commit is contained in:
Stepan Snigirev 2019-09-06 20:51:34 +02:00
parent 5232eeed0b
commit 97fa1b07fe
2 changed files with 3 additions and 3 deletions

View file

@ -147,7 +147,7 @@ def new_wallet_simple():
def new_wallet_multi():
specter.check()
name = "Multisig"
wallet_type = "wsh"
wallet_type = "sh-wsh"
wallet_name = name
i = 2
err = None

View file

@ -39,11 +39,11 @@
<div class="btn radio left">Legacy</div>
</label>
<label>
<input type="radio" name="type" value="sh-wpkh" class="hidden">
<input type="radio" name="type" value="sh-wpkh" checked class="hidden">
<div class="btn radio">Nested Segwit</div>
</label>
<label>
<input type="radio" name="type" value="wpkh" checked class="hidden">
<input type="radio" name="type" value="wpkh" class="hidden">
<div class="btn radio right">Segwit</div>
</label>
{% endif %}