mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-06 10:59:29 +00:00
214fc7113c
* Refresh unspent coins before creating a transaction * disable seed verification in debug mode [skip ci]
9 lines
No EOL
318 B
Dart
9 lines
No EOL
318 B
Dart
import 'package:flutter/foundation.dart';
|
|
|
|
class FeatureFlag {
|
|
static const bool isCakePayEnabled = false;
|
|
static const bool isExolixEnabled = true;
|
|
static const bool isInAppTorEnabled = false;
|
|
static const bool isBackgroundSyncEnabled = false;
|
|
static const int verificationWordsCount = kDebugMode ? 0 : 2;
|
|
} |