@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.
@@ -7860,6 +7860,11 @@ class Connection {
7860
7860
  this._rpcWebSocketConnected = false;
7861
7861
  this._rpcWebSocketGeneration++;
7862
7862
 
7863
+ if (this._rpcWebSocketIdleTimeout) {
7864
+ clearTimeout(this._rpcWebSocketIdleTimeout);
7865
+ this._rpcWebSocketIdleTimeout = null;
7866
+ }
7867
+
7863
7868
  if (this._rpcWebSocketHeartbeat) {
7864
7869
  clearInterval(this._rpcWebSocketHeartbeat);
7865
7870
  this._rpcWebSocketHeartbeat = null;