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 d0d5be1 commit a01ce1dCopy full SHA for a01ce1d
yarn-project/bb-prover/src/bb/execute.ts
@@ -435,7 +435,7 @@ export async function generateAvmProof(
435
return {
436
status: BB_RESULT.FAILURE,
437
reason: `Failed to generate proof. AVM proof for TX hash ${input.hints.tx.hash}. Exit code ${result.exitCode}. Signal ${result.signal}.`,
438
- retry: !!result.signal,
+ retry: result.signal === 'SIGKILL', // retry on SIGKILL because the oomkiller might have stopped the process
439
};
440
} catch (error) {
441
return { status: BB_RESULT.FAILURE, reason: `${error}` };
0 commit comments