Skip to content
Snippets Groups Projects
Commit b0479b82 authored by poka's avatar poka
Browse files

fix late not init

parent d2b25b7a
Branches
Tags
No related merge requests found
Pipeline #40122 waiting for manual action
......@@ -52,14 +52,14 @@ const String currencyName = 'ĞD';
const debugPin = false;
String indexerEndpoint = '';
late int balanceRatio;
late int udValue;
int balanceRatio = 1;
int udValue = 0;
// Indexer
late DateTime startBlockchainTime;
DateTime startBlockchainTime = DateTime(0, 0, 0, 0, 0);
bool startBlockchainInitialized = false;
late int currentUdIndex;
int currentUdIndex = 0;
final Map<int, String> monthsInYear = {
1: "month1".tr(),
......
......@@ -51,7 +51,6 @@ class SubstrateSdk with ChangeNotifier {
String g1V1OldPubkey = '';
bool isCesiumIDVisible = false;
bool isCesiumAddresLoading = false;
late int udValue;
final Map<String, CertificationData> certsCounterCache = {};
Map<String, List> oldOwnerKeys = {};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment