@solana/web3.js 1.50.0 → 1.50.1

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.
@@ -7890,6 +7890,11 @@ class Connection {
7890
7890
  this._rpcWebSocketConnected = false;
7891
7891
  this._rpcWebSocketGeneration++;
7892
7892
 
7893
+ if (this._rpcWebSocketIdleTimeout) {
7894
+ clearTimeout(this._rpcWebSocketIdleTimeout);
7895
+ this._rpcWebSocketIdleTimeout = null;
7896
+ }
7897
+
7893
7898
  if (this._rpcWebSocketHeartbeat) {
7894
7899
  clearInterval(this._rpcWebSocketHeartbeat);
7895
7900
  this._rpcWebSocketHeartbeat = null;