Skip to content

Commit be3e6b1

Browse files
committedOct 10, 2024
Fixed bug in JSON-RPC error checking (#4827, #4837, #4851).
1 parent 858a81b commit be3e6b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src.ts/providers/provider-jsonrpc.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ export class JsonRpcSigner extends AbstractSigner<JsonRpcApiProvider> {
382382
// If the network changed: calling again will also fail
383383
// If unsupported: likely destroyed
384384
if (isError(error, "CANCELLED") || isError(error, "BAD_DATA") ||
385-
isError(error, "NETWORK_ERROR" || isError(error, "UNSUPPORTED_OPERATION"))) {
385+
isError(error, "NETWORK_ERROR") || isError(error, "UNSUPPORTED_OPERATION")) {
386386

387387
if (error.info == null) { error.info = { }; }
388388
error.info.sendTransactionHash = hash;

0 commit comments

Comments
 (0)
Please sign in to comment.