@solana/web3.js 1.95.3 → 1.95.4
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 +82 -72
- package/lib/index.browser.cjs.js.map +1 -1
- package/lib/index.browser.esm.js +82 -72
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js +751 -689
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.esm.js +754 -692
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js +10338 -10082
- package/lib/index.iife.js.map +1 -1
- package/lib/index.iife.min.js +11 -11
- package/lib/index.iife.min.js.map +1 -1
- package/lib/index.native.js +82 -72
- package/lib/index.native.js.map +1 -1
- package/package.json +1 -1
- package/src/connection.ts +6 -6
package/package.json
CHANGED
package/src/connection.ts
CHANGED
|
@@ -6252,13 +6252,13 @@ export class Connection {
|
|
|
6252
6252
|
] = subscription.callbacks;
|
|
6253
6253
|
await this._updateSubscriptions();
|
|
6254
6254
|
} catch (e) {
|
|
6255
|
-
|
|
6256
|
-
|
|
6257
|
-
|
|
6255
|
+
console.error(
|
|
6256
|
+
`Received ${e instanceof Error ? '' : 'JSON-RPC '}error calling \`${method}\``,
|
|
6257
|
+
{
|
|
6258
6258
|
args,
|
|
6259
|
-
e
|
|
6260
|
-
|
|
6261
|
-
|
|
6259
|
+
error: e,
|
|
6260
|
+
},
|
|
6261
|
+
);
|
|
6262
6262
|
if (!isCurrentConnectionStillActive()) {
|
|
6263
6263
|
return;
|
|
6264
6264
|
}
|