@solana/web3.js 1.41.8 → 1.41.9
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 +2 -0
- package/lib/index.browser.cjs.js.map +1 -1
- package/lib/index.browser.esm.js +2 -0
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js +2 -0
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.esm.js +2 -0
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js +2 -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/package.json +2 -2
- package/src/connection.ts +2 -0
package/lib/index.browser.esm.js
CHANGED
|
@@ -7729,6 +7729,7 @@ class Connection {
|
|
|
7729
7729
|
|
|
7730
7730
|
|
|
7731
7731
|
_wsOnError(err) {
|
|
7732
|
+
this._rpcWebSocketConnected = false;
|
|
7732
7733
|
console.error('ws error:', err.message);
|
|
7733
7734
|
}
|
|
7734
7735
|
/**
|
|
@@ -7737,6 +7738,7 @@ class Connection {
|
|
|
7737
7738
|
|
|
7738
7739
|
|
|
7739
7740
|
_wsOnClose(code) {
|
|
7741
|
+
this._rpcWebSocketConnected = false;
|
|
7740
7742
|
this._rpcWebSocketGeneration++;
|
|
7741
7743
|
|
|
7742
7744
|
if (this._rpcWebSocketHeartbeat) {
|