From 41f580f20944b42f4a9a7e2f8d1b6ea8d53d9b65 Mon Sep 17 00:00:00 2001 From: Antonio Viggiano Date: Fri, 12 Sep 2025 14:06:57 -0300 Subject: [PATCH] core/vm: fix typo in CLZ doc (#32604) Fixes typo in CLZ doc. --- core/vm/eips.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vm/eips.go b/core/vm/eips.go index 10ca1fe9ab..d7ed18648e 100644 --- a/core/vm/eips.go +++ b/core/vm/eips.go @@ -294,7 +294,7 @@ func opBlobBaseFee(pc *uint64, evm *EVM, scope *ScopeContext) ([]byte, error) { return nil, nil } -// opCLZ implements the CLZ opcode (count leading zero bytes) +// opCLZ implements the CLZ opcode (count leading zero bits) func opCLZ(pc *uint64, evm *EVM, scope *ScopeContext) ([]byte, error) { x := scope.Stack.peek() x.SetUint64(256 - uint64(x.BitLen()))