docs: fix typo (#6733)

This commit is contained in:
Matthias Seitz
2024-02-22 11:58:01 +01:00
committed by GitHub
parent ca98261d43
commit 9760d906d7

View File

@@ -27,7 +27,7 @@ pub trait BuiltPayload: Send + Sync + std::fmt::Debug {
/// Converts the type into the response expected by `engine_getPayloadV2`
fn into_v2_payload(self) -> ExecutionPayloadEnvelopeV2;
/// Converts the type into the response expected by `engine_getPayloadV2`
/// Converts the type into the response expected by `engine_getPayloadV3`
fn into_v3_payload(self) -> ExecutionPayloadEnvelopeV3;
}