temp fix nano

This commit is contained in:
Julian 2023-12-07 12:17:51 -06:00
parent d5cb4dd6b4
commit d911ea0e66
2 changed files with 6 additions and 4 deletions

View file

@ -850,9 +850,10 @@ class NanoWallet extends CoinServiceAPI with WalletCache, WalletDB {
int get storedChainHeight => getCachedChainHeight();
NodeModel getCurrentNode() {
return _xnoNode ??
NodeService(secureStorageInterface: _secureStore)
.getPrimaryNodeFor(coin: coin) ??
return
// _xnoNode ??
// NodeService(secureStorageInterface: _secureStore)
// .getPrimaryNodeFor(coin: coin) ??
DefaultNodes.getNodeFor(coin);
}

View file

@ -206,7 +206,8 @@ abstract class DefaultNodes {
isDown: false);
static NodeModel get nano => NodeModel(
host: "https://rainstorm.city/api",
// host: "https://rainstorm.city/api",
host: "https://app.natrium.io/api",
port: 443,
name: defaultName,
id: _nodeId(Coin.nano),