@solana/web3.js 1.41.5 → 1.41.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solana/web3.js",
3
- "version": "1.41.5",
3
+ "version": "1.41.8",
4
4
  "description": "Solana Javascript API",
5
5
  "keywords": [
6
6
  "api",
package/src/connection.ts CHANGED
@@ -4847,7 +4847,7 @@ export class Connection {
4847
4847
  try {
4848
4848
  this.removeSignatureListener(clientSubscriptionId);
4849
4849
  // eslint-disable-next-line no-empty
4850
- } catch {
4850
+ } catch (_err) {
4851
4851
  // Already removed.
4852
4852
  }
4853
4853
  }
@@ -4895,7 +4895,7 @@ export class Connection {
4895
4895
  try {
4896
4896
  this.removeSignatureListener(clientSubscriptionId);
4897
4897
  // eslint-disable-next-line no-empty
4898
- } catch {
4898
+ } catch (_err) {
4899
4899
  // Already removed.
4900
4900
  }
4901
4901
  },