We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da8056a commit 1c71fd4Copy full SHA for 1c71fd4
yarn-project/aztec-node/src/aztec-node/server.ts
@@ -400,7 +400,9 @@ export class AztecNodeService implements AztecNode, Traceable {
400
const reason = valid.reason.join(', ');
401
this.metrics.receivedTx(timer.ms(), false);
402
this.log.warn(`Invalid tx ${txHash}: ${reason}`, { txHash });
403
- throw new Error(`Invalid tx: ${reason}`);
+ // TODO(#10967): Throw when receiving an invalid tx instead of just returning
404
+ // throw new Error(`Invalid tx: ${reason}`);
405
+ return;
406
}
407
408
await this.p2pClient!.sendTx(tx);
0 commit comments