removed restrictions on not saving some events

otherwise no functional change .. (except improving how encryptedchannel list is initialized in Store construction in FromEvents)
This commit is contained in:
Vishal
2022-12-01 22:40:14 +05:30
parent 280a9cb56c
commit eb9a666376
5 changed files with 62 additions and 60 deletions

View File

@@ -16,6 +16,14 @@ class HistogramEntry {
}
}
void myWait(int ms) async {
Future<void> foo1() async {
await Future.delayed(Duration(milliseconds: ms));
return;
}
await foo1();
}
bool isNumeric(String s) {
return double.tryParse(s) != null;
}