Log more data on the 'Unable to retrieve blinded block data' error
This commit is contained in:
parent
41f21b2688
commit
b7b460cf57
|
@ -68,8 +68,8 @@ proc produceBlindedBlock(
|
||||||
try:
|
try:
|
||||||
await vc.produceBlindedBlock(slot, randao_reveal, graffiti,
|
await vc.produceBlindedBlock(slot, randao_reveal, graffiti,
|
||||||
ApiStrategyKind.Best)
|
ApiStrategyKind.Best)
|
||||||
except ValidatorApiError:
|
except ValidatorApiError as exc:
|
||||||
error "Unable to retrieve blinded block data"
|
error "Unable to retrieve blinded block data", error_msg = exc.msg
|
||||||
return Opt.none(PreparedBlindedBeaconBlock)
|
return Opt.none(PreparedBlindedBeaconBlock)
|
||||||
except CancelledError as exc:
|
except CancelledError as exc:
|
||||||
error "Blinded block data production has been interrupted"
|
error "Blinded block data production has been interrupted"
|
||||||
|
|
Loading…
Reference in New Issue