From 4d3b3b51023b26ca5e3b3d574f47003ee0fbe054 Mon Sep 17 00:00:00 2001 From: MariusVanDerWijden Date: Fri, 7 Nov 2025 14:53:33 +0100 Subject: [PATCH] core/vm: remove todo --- core/vm/contracts.go | 1 - 1 file changed, 1 deletion(-) diff --git a/core/vm/contracts.go b/core/vm/contracts.go index cae0be9f2de6..00ddbebd6baf 100644 --- a/core/vm/contracts.go +++ b/core/vm/contracts.go @@ -591,7 +591,6 @@ func (c *bigModExp) RequiredGas(input []byte) uint64 { if expLen > 32 { expHead.SetBytes(getData(input, baseLen, 32)) } else { - // TODO: Check that if expLen < baseLen, then getData will return an empty slice expHead.SetBytes(getData(input, baseLen, expLen)) } }