mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-12-25 05:06:45 +00:00
add taproot script type to connected wallet import options
This commit is contained in:
parent
a5519537c5
commit
c443bc78d3
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,7 @@ public class DevicePane extends TitledDescriptionPane {
|
||||||
|
|
||||||
if(importButton instanceof SplitMenuButton importMenuButton) {
|
if(importButton instanceof SplitMenuButton importMenuButton) {
|
||||||
if(wallet.getScriptType() == null) {
|
if(wallet.getScriptType() == null) {
|
||||||
ScriptType[] scriptTypes = new ScriptType[] {ScriptType.P2WPKH, ScriptType.P2SH_P2WPKH, ScriptType.P2PKH};
|
ScriptType[] scriptTypes = new ScriptType[] {ScriptType.P2WPKH, ScriptType.P2SH_P2WPKH, ScriptType.P2PKH, ScriptType.P2TR};
|
||||||
for(ScriptType scriptType : scriptTypes) {
|
for(ScriptType scriptType : scriptTypes) {
|
||||||
MenuItem item = new MenuItem(scriptType.getDescription());
|
MenuItem item = new MenuItem(scriptType.getDescription());
|
||||||
final List<ChildNumber> derivation = scriptType.getDefaultDerivation();
|
final List<ChildNumber> derivation = scriptType.getDefaultDerivation();
|
||||||
|
|
Loading…
Reference in a new issue