mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-30 14:15:52 +00:00
enable wow on desktop
This commit is contained in:
parent
61d3afbe6e
commit
7013e99081
2 changed files with 6 additions and 9 deletions
|
@ -33,9 +33,9 @@ class SearchableCoinList extends ConsumerWidget {
|
|||
_coins.remove(Coin.firoTestNet);
|
||||
|
||||
// Kidgloves for Wownero on desktop
|
||||
if(isDesktop) {
|
||||
_coins.remove(Coin.wownero);
|
||||
}
|
||||
// if(isDesktop) {
|
||||
// _coins.remove(Coin.wownero);
|
||||
// }
|
||||
|
||||
return _coins;
|
||||
}
|
||||
|
|
|
@ -11,12 +11,9 @@ import 'package:stackwallet/services/coins/litecoin/litecoin_wallet.dart'
|
|||
import 'package:stackwallet/services/coins/monero/monero_wallet.dart' as xmr;
|
||||
import 'package:stackwallet/services/coins/namecoin/namecoin_wallet.dart'
|
||||
as nmc;
|
||||
import 'package:stackwallet/services/coins/particl/particl_wallet.dart'
|
||||
as particl;
|
||||
import 'package:stackwallet/services/coins/wownero/wownero_wallet.dart' as wow;
|
||||
import 'package:stackwallet/services/coins/particl/particl_wallet.dart'
|
||||
as particl;
|
||||
import 'package:stackwallet/utilities/util.dart';
|
||||
import 'package:stackwallet/services/coins/particl/particl_wallet.dart'
|
||||
as particl;
|
||||
|
||||
enum Coin {
|
||||
bitcoin,
|
||||
|
@ -42,7 +39,7 @@ enum Coin {
|
|||
firoTestNet,
|
||||
}
|
||||
|
||||
final int kTestNetCoinCount = Util.isDesktop ? 5 : 4;
|
||||
final int kTestNetCoinCount = 4; // Util.isDesktop ? 5 : 4;
|
||||
|
||||
extension CoinExt on Coin {
|
||||
String get prettyName {
|
||||
|
|
Loading…
Reference in a new issue