We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ethers-io
Learn more about funding links in repositories.
Report abuse
1 parent 858a81b commit be3e6b1Copy full SHA for be3e6b1
src.ts/providers/provider-jsonrpc.ts
@@ -382,7 +382,7 @@ export class JsonRpcSigner extends AbstractSigner<JsonRpcApiProvider> {
382
// If the network changed: calling again will also fail
383
// If unsupported: likely destroyed
384
if (isError(error, "CANCELLED") || isError(error, "BAD_DATA") ||
385
- isError(error, "NETWORK_ERROR" || isError(error, "UNSUPPORTED_OPERATION"))) {
+ isError(error, "NETWORK_ERROR") || isError(error, "UNSUPPORTED_OPERATION")) {
386
387
if (error.info == null) { error.info = { }; }
388
error.info.sendTransactionHash = hash;
0 commit comments