From 4c0f092591c490130e964c7a5d49288ce0a12938 Mon Sep 17 00:00:00 2001 From: Daniel Liu <139250065@qq.com> Date: Tue, 21 Apr 2026 11:05:07 +0800 Subject: [PATCH] docs(core/vm): fix function name in comment for doPush Update the helper comment to match the doPush method name. --- core/vm/program/program.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vm/program/program.go b/core/vm/program/program.go index 2dff44f9c147..31d8bf5ebc5b 100644 --- a/core/vm/program/program.go +++ b/core/vm/program/program.go @@ -53,7 +53,7 @@ func (p *Program) add(op byte) *Program { return p } -// pushBig creates a PUSHX instruction and pushes the given val. +// doPush creates a PUSHX instruction and pushes the given val. // - If the val is nil, it pushes zero // - If the val is bigger than 32 bytes, it panics func (p *Program) doPush(val *uint256.Int) {