Skip to content

Commit 6fbc409

Browse files
authored
Remove unused error variable
1 parent 802ac67 commit 6fbc409

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/services/evm.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Service {
2727
hash,
2828
});
2929
return transaction || null;
30-
} catch (e) {
30+
} catch {
3131
return null;
3232
}
3333
}
@@ -40,7 +40,7 @@ class Service {
4040
hash,
4141
});
4242
return receipt || null;
43-
} catch (e) {
43+
} catch {
4444
return null;
4545
}
4646
}

0 commit comments

Comments
 (0)