diff --git a/beacon_node/execution_layer/src/lib.rs b/beacon_node/execution_layer/src/lib.rs index 4e0fe1de16b..6e5e4fca01e 100644 --- a/beacon_node/execution_layer/src/lib.rs +++ b/beacon_node/execution_layer/src/lib.rs @@ -158,6 +158,7 @@ pub enum Error { }, ZeroLengthTransaction, PayloadBodiesByRangeNotSupported, + GetBlobsNotSupported, InvalidJWTSecret(String), InvalidForkForPayload, InvalidPayloadBody(String), @@ -1871,7 +1872,7 @@ impl ExecutionLayer { .map_err(Box::new) .map_err(Error::EngineError) } else { - Ok(vec![None; query.len()]) + Err(Error::GetBlobsNotSupported) } }