mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-06 18:59:24 +00:00
Enable frost on desktop. Not sure why it was disabled. I guess we'll find out soon enough if there are issues...
This commit is contained in:
parent
973d8b3eee
commit
7511ce2ac3
1 changed files with 0 additions and 6 deletions
|
@ -10,7 +10,6 @@
|
||||||
|
|
||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
|
|
||||||
import 'package:flutter/foundation.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||||
import 'package:flutter_svg/svg.dart';
|
import 'package:flutter_svg/svg.dart';
|
||||||
|
@ -131,11 +130,6 @@ class _AddWalletViewState extends ConsumerState<AddWalletView> {
|
||||||
void initState() {
|
void initState() {
|
||||||
_searchFieldController = TextEditingController();
|
_searchFieldController = TextEditingController();
|
||||||
_searchFocusNode = FocusNode();
|
_searchFocusNode = FocusNode();
|
||||||
// _coinsTestnet.remove(Coin.firoTestNet);
|
|
||||||
|
|
||||||
if (Util.isDesktop && !kDebugMode) {
|
|
||||||
_coins.removeWhere((e) => e is BitcoinFrost);
|
|
||||||
}
|
|
||||||
|
|
||||||
coinEntities.addAll(_coins.map((e) => CoinEntity(e)));
|
coinEntities.addAll(_coins.map((e) => CoinEntity(e)));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue