mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-10 20:54:33 +00:00
fix: coin enum order
This commit is contained in:
parent
b6ed690eb6
commit
40d53f08c2
1 changed files with 3 additions and 3 deletions
|
@ -31,6 +31,7 @@ import 'package:stackwallet/services/coins/wownero/wownero_wallet.dart' as wow;
|
|||
import 'package:stackwallet/utilities/constants.dart';
|
||||
|
||||
enum Coin {
|
||||
banano,
|
||||
bitcoin,
|
||||
bitcoincash,
|
||||
dogecoin,
|
||||
|
@ -41,10 +42,9 @@ enum Coin {
|
|||
litecoin,
|
||||
monero,
|
||||
namecoin,
|
||||
nano,
|
||||
particl,
|
||||
wownero,
|
||||
nano,
|
||||
banano,
|
||||
|
||||
///
|
||||
|
||||
|
@ -52,10 +52,10 @@ enum Coin {
|
|||
///
|
||||
|
||||
bitcoinTestNet,
|
||||
litecoinTestNet,
|
||||
bitcoincashTestnet,
|
||||
dogecoinTestNet,
|
||||
firoTestNet,
|
||||
litecoinTestNet,
|
||||
}
|
||||
|
||||
final int kTestNetCoinCount = 4; // Util.isDesktop ? 5 : 4;
|
||||
|
|
Loading…
Reference in a new issue