From 956753646a1cbd04ac582eacb07eac8e67362034 Mon Sep 17 00:00:00 2001 From: shangchengbabaiban Date: Fri, 2 May 2025 12:56:08 +0900 Subject: [PATCH] chore: fix function name in comment (#1529) Signed-off-by: shangchengbabaiban --- core/types/block.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/types/block.go b/core/types/block.go index 8d97035dc6..f67b5556d3 100644 --- a/core/types/block.go +++ b/core/types/block.go @@ -221,7 +221,7 @@ func (h *Header) ValidateBlockNumberOptionsPIP15(minBlockNumber *big.Int, maxBlo return nil } -// ValidateBlockNumberOptionsPIP15 validates the timestamp range passed as in the options parameter in the conditional transaction (PIP-15) +// ValidateTimestampOptionsPIP15 validates the timestamp range passed as in the options parameter in the conditional transaction (PIP-15) func (h *Header) ValidateTimestampOptionsPIP15(minTimestamp *uint64, maxTimestamp *uint64) error { currentBlockTime := h.Time