log engine getPayload requests (#5432)

This commit is contained in:
tersec 2023-09-15 08:56:32 +00:00 committed by GitHub
parent aec953e4da
commit dae4beb4a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 5 deletions

View File

@ -409,16 +409,21 @@ proc getExecutionPayload(
get_expected_withdrawals(forkyState.data) get_expected_withdrawals(forkyState.data)
else: else:
@[] @[]
payload = await node.elManager.getPayload(
PayloadType, beaconHead.blck.bid.root, executionHead, latestSafe,
latestFinalized, timestamp, random, feeRecipient, withdrawals)
if payload.isNone: info "Requesting engine payload",
beaconHead = shortLog(beaconHead.blck),
executionHead = shortLog(executionHead),
validatorIndex = validator_index,
feeRecipient = $feeRecipient
let payload = (await node.elManager.getPayload(
PayloadType, beaconHead.blck.bid.root, executionHead, latestSafe,
latestFinalized, timestamp, random, feeRecipient, withdrawals)).valueOr:
error "Failed to obtain execution payload from EL", error "Failed to obtain execution payload from EL",
executionHeadBlock = executionHead executionHeadBlock = executionHead
return Opt.none(PayloadType) return Opt.none(PayloadType)
return Opt.some payload.get return Opt.some payload
except CatchableError as err: except CatchableError as err:
beacon_block_payload_errors.inc() beacon_block_payload_errors.inc()
error "Error creating non-empty execution payload", error "Error creating non-empty execution payload",