temp backwards compat fix

This commit is contained in:
julian 2024-01-14 16:09:48 -06:00
parent 4d2ca3708d
commit e1b583b16d

View file

@ -26,7 +26,10 @@ mixin MnemonicInterface<T extends CryptoCurrency> on Wallet<T> {
);
if (mnemonicPassphrase == null) {
throw SWException("mnemonicPassphrase has not been set");
// some really old wallets may not have this set so for legacy reasons do
// not throw here for now
return "";
//throw SWException("mnemonicPassphrase has not been set");
}
return mnemonicPassphrase;