diff --git a/src/main/java/com/sparrowwallet/sparrow/control/DevicePane.java b/src/main/java/com/sparrowwallet/sparrow/control/DevicePane.java index 4b2df0b9..20d9e4f8 100644 --- a/src/main/java/com/sparrowwallet/sparrow/control/DevicePane.java +++ b/src/main/java/com/sparrowwallet/sparrow/control/DevicePane.java @@ -300,7 +300,7 @@ public class DevicePane extends TitledDescriptionPane { if(importButton instanceof SplitMenuButton importMenuButton) { 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) { MenuItem item = new MenuItem(scriptType.getDescription()); final List derivation = scriptType.getDefaultDerivation();