core/vm: remove todo (#33120)

Removes an unnecessary todo. This case is handled, the comment was an
artifact from Kev's refactor
This commit is contained in:
Marius van der Wijden 2025-11-07 14:55:58 +01:00 committed by Alvarez
parent f70cd5b73d
commit c752ea545e

View file

@ -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))
}
}