mirror of
https://github.com/vishalxl/nostr_console.git
synced 2025-10-11 11:52:47 +02:00
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:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user