mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
small fix
This commit is contained in:
parent
a15a1053a4
commit
697ec78483
2 changed files with 2 additions and 1 deletions
|
@ -27,7 +27,7 @@ const cakeWalletBitcoinElectrumUri = 'electrum.cakewallet.com:50002';
|
|||
const cakeWalletLitecoinElectrumUri = 'ltc-electrum.cakewallet.com:50002';
|
||||
const havenDefaultNodeUri = 'nodes.havenprotocol.org:443';
|
||||
const ethereumDefaultNodeUri = 'ethereum.publicnode.com';
|
||||
const nanoDefaultNodeUri = 'rpc.nano.to';
|
||||
const nanoDefaultNodeUri = 'rpc.nano.to:443';
|
||||
|
||||
Future defaultSettingsMigration(
|
||||
{required int version,
|
||||
|
|
|
@ -36,6 +36,7 @@ abstract class WalletRestoreChooseDerivationViewModelBase with Store {
|
|||
var walletType = credentials["walletType"] as WalletType;
|
||||
var appStore = getIt.get<AppStore>();
|
||||
var node = appStore.settingsStore.getCurrentNode(walletType);
|
||||
print(node.uri);
|
||||
switch (walletType) {
|
||||
case WalletType.nano:
|
||||
String? mnemonic = credentials['seed'] as String?;
|
||||
|
|
Loading…
Reference in a new issue