diff --git a/WalletWasabi/Helpers/ImportWalletHelper.cs b/WalletWasabi/Helpers/ImportWalletHelper.cs index cf4da572838..a04d64ae104 100644 --- a/WalletWasabi/Helpers/ImportWalletHelper.cs +++ b/WalletWasabi/Helpers/ImportWalletHelper.cs @@ -91,6 +91,8 @@ private static KeyManager GetKeyManagerByColdcardJson(WalletManager manager, JOb ? NBitcoinHelpers.BetterParseExtPubKey(taprootXpubString) : null; - return KeyManager.CreateNewHardwareWalletWatchOnly(mfp, segwitExtPubKey, taprootExtPubKey, manager.Network, walletFullPath); + var km = KeyManager.CreateNewHardwareWalletWatchOnly(mfp, segwitExtPubKey, taprootExtPubKey, manager.Network, walletFullPath); + km.PreferPsbtWorkflow = true; + return km; } }