File tree Expand file tree Collapse file tree
lib/core/seed/data/datasources Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,15 +39,6 @@ class SeedDatasource {
3939 return seed;
4040 }
4141
42- if (attempt == maxRetries - 1 ) {
43- final exists = await _secureStorage.hasValue (key);
44- if (! exists) {
45- throw SeedNotFoundException (
46- 'Seed not found for fingerprint: $fingerprint ' ,
47- );
48- }
49- }
50-
5142 if (attempt < maxRetries - 1 ) {
5243 final delay = Duration (
5344 milliseconds: initialDelay.inMilliseconds * (1 << attempt),
@@ -64,17 +55,6 @@ class SeedDatasource {
6455 rethrow ;
6556 }
6657
67- if (attempt == maxRetries - 1 ) {
68- try {
69- final exists = await _secureStorage.hasValue (key);
70- if (! exists) {
71- throw SeedNotFoundException (
72- 'Seed not found for fingerprint: $fingerprint ' ,
73- );
74- }
75- } catch (_) {}
76- }
77-
7858 if (attempt < maxRetries - 1 ) {
7959 final delay = Duration (
8060 milliseconds: initialDelay.inMilliseconds * (1 << attempt),
You can’t perform that action at this time.
0 commit comments