mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-10 12:44:31 +00:00
small fix
This commit is contained in:
parent
3c524b2ea4
commit
5ac6df5d44
1 changed files with 5 additions and 4 deletions
|
@ -180,8 +180,7 @@ abstract class DefaultNodes {
|
|||
enabled: true,
|
||||
coinName: Coin.nano.name,
|
||||
isFailover: true,
|
||||
isDown: false
|
||||
);
|
||||
isDown: false);
|
||||
|
||||
static NodeModel get banano => NodeModel(
|
||||
host: "https://kaliumapi.appditto.com/api",
|
||||
|
@ -192,8 +191,7 @@ abstract class DefaultNodes {
|
|||
enabled: true,
|
||||
coinName: Coin.banano.name,
|
||||
isFailover: true,
|
||||
isDown: false
|
||||
);
|
||||
isDown: false);
|
||||
|
||||
static NodeModel get bitcoinTestnet => NodeModel(
|
||||
host: "bitcoin-testnet.stackwallet.com",
|
||||
|
@ -296,6 +294,9 @@ abstract class DefaultNodes {
|
|||
case Coin.nano:
|
||||
return nano;
|
||||
|
||||
case Coin.banano:
|
||||
return banano;
|
||||
|
||||
case Coin.bitcoinTestNet:
|
||||
return bitcoinTestnet;
|
||||
|
||||
|
|
Loading…
Reference in a new issue