mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-29 21:55:58 +00:00
missing enum cases
This commit is contained in:
parent
cd80e9f4d2
commit
20943de67b
2 changed files with 4 additions and 0 deletions
|
@ -534,6 +534,7 @@ class _NodeFormState extends ConsumerState<NodeForm> {
|
|||
case Coin.bitcoinTestNet:
|
||||
case Coin.firoTestNet:
|
||||
case Coin.dogecoinTestNet:
|
||||
case Coin.bitcoincashTestnet:
|
||||
return false;
|
||||
|
||||
case Coin.epicCash:
|
||||
|
|
|
@ -26,5 +26,8 @@ Uri getBlockExplorerTransactionUrlFor({
|
|||
return Uri.parse("https://blockchair.com/bitcoin-cash/transaction/$txid");
|
||||
case Coin.namecoin:
|
||||
return Uri.parse("https://chainz.cryptoid.info/nmc/tx.dws?$txid.htm");
|
||||
case Coin.bitcoincashTestnet:
|
||||
throw UnimplementedError("missing block explorer for epic cash");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue