Skip to content

Commit

Permalink
Disable warning in engine_getBlobsV1 (NethermindEth#7380)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcindsobczak authored Sep 2, 2024
1 parent a590113 commit e05f9f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public EngineRpcCapabilitiesProvider(ISpecProvider specProvider)
_capabilities[nameof(IEngineRpcModule.engine_getPayloadV3)] = (spec.IsEip4844Enabled, spec.IsEip4844Enabled);
_capabilities[nameof(IEngineRpcModule.engine_forkchoiceUpdatedV3)] = (spec.IsEip4844Enabled, spec.IsEip4844Enabled);
_capabilities[nameof(IEngineRpcModule.engine_newPayloadV3)] = (spec.IsEip4844Enabled, spec.IsEip4844Enabled);
_capabilities[nameof(IEngineRpcModule.engine_getBlobsV1)] = (spec.IsEip4844Enabled, spec.IsEip4844Enabled);
_capabilities[nameof(IEngineRpcModule.engine_getBlobsV1)] = (spec.IsEip4844Enabled, false);
#endregion
}

Expand Down

0 comments on commit e05f9f0

Please sign in to comment.