@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.
- package/lib/index.browser.cjs.js +5 -0
- package/lib/index.browser.cjs.js.map +1 -1
- package/lib/index.browser.esm.js +5 -0
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js +5 -0
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.esm.js +5 -0
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js +5 -0
- package/lib/index.iife.js.map +1 -1
- package/lib/index.iife.min.js +1 -1
- package/lib/index.iife.min.js.map +1 -1
- package/lib/index.native.js +5 -0
- package/lib/index.native.js.map +1 -1
- package/package.json +1 -1
- package/src/connection.ts +4 -0
package/lib/index.browser.cjs.js
CHANGED
|
@@ -7891,6 +7891,11 @@ class Connection {
|
|
|
7891
7891
|
this._rpcWebSocketConnected = false;
|
|
7892
7892
|
this._rpcWebSocketGeneration++;
|
|
7893
7893
|
|
|
7894
|
+
if (this._rpcWebSocketIdleTimeout) {
|
|
7895
|
+
clearTimeout(this._rpcWebSocketIdleTimeout);
|
|
7896
|
+
this._rpcWebSocketIdleTimeout = null;
|
|
7897
|
+
}
|
|
7898
|
+
|
|
7894
7899
|
if (this._rpcWebSocketHeartbeat) {
|
|
7895
7900
|
clearInterval(this._rpcWebSocketHeartbeat);
|
|
7896
7901
|
this._rpcWebSocketHeartbeat = null;
|