Skip to content

Commit

Permalink
deblobs timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
g11tech committed Nov 3, 2024
1 parent c5a0c76 commit cd0d850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/beacon-node/src/execution/engine/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ export class ExecutionEngineHttp implements IExecutionEngine {

async getBlobs(_fork: ForkName, versionedHashes: VersionedHashes): Promise<(BlobAndProof | null)[]> {
// retry only after a day may be
const GETBLOBS_RETRY_TIMEOUT = 256 * 12;
const GETBLOBS_RETRY_TIMEOUT = 256 * 32 * 12;
const timeNow = Date.now() / 1000;
const timeSinceLastFail = timeNow - this.lastGetBlobsErrorTime;
if (timeSinceLastFail < GETBLOBS_RETRY_TIMEOUT) {
Expand Down

0 comments on commit cd0d850

Please sign in to comment.