Skip to content

Commit

Permalink
Remove unused error variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Destiner authored Aug 2, 2024
1 parent 802ac67 commit 6fbc409
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/evm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Service {
hash,
});
return transaction || null;
} catch (e) {
} catch {
return null;
}
}
Expand All @@ -40,7 +40,7 @@ class Service {
hash,
});
return receipt || null;
} catch (e) {
} catch {
return null;
}
}
Expand Down

0 comments on commit 6fbc409

Please sign in to comment.