mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-10 20:54:33 +00:00
temp fix nano
This commit is contained in:
parent
d5cb4dd6b4
commit
d911ea0e66
2 changed files with 6 additions and 4 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
@ -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),
|
||||
|
|
Loading…
Reference in a new issue