From 9760d906d7588261aad1cce10572cb1270fcf271 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Thu, 22 Feb 2024 11:58:01 +0100 Subject: [PATCH] docs: fix typo (#6733) --- crates/node-api/src/engine/traits.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/node-api/src/engine/traits.rs b/crates/node-api/src/engine/traits.rs index 63ec0dbcca..bdcc82e584 100644 --- a/crates/node-api/src/engine/traits.rs +++ b/crates/node-api/src/engine/traits.rs @@ -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; }