Skip to content

Commit 2f36e50

Browse files
committed
fix: start with 100ms delay
1 parent 4e5fa34 commit 2f36e50

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/core/seed/data/datasources/seed_datasource.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class SeedDatasource {
2222

2323
Future<SeedModel> get(String fingerprint) async {
2424
const maxRetries = 5;
25-
const initialDelay = Duration(milliseconds: 200);
25+
const initialDelay = Duration(milliseconds: 100);
2626
final key = composeSeedStorageKey(fingerprint);
2727

2828
for (int attempt = 0; attempt < maxRetries; attempt++) {

0 commit comments

Comments
 (0)