core/vm: happy lint, happy life

This commit is contained in:
MariusVanDerWijden 2025-05-08 11:40:12 +02:00
parent 04023e6120
commit d3a32816f9

View file

@ -28,10 +28,6 @@ type stackArena struct {
top int // first free slot top int // first free slot
} }
func (sa *stackArena) push(value *uint256.Int) {
}
func newArena() *stackArena { func newArena() *stackArena {
return &stackArena{ return &stackArena{
data: make([]uint256.Int, 1025), data: make([]uint256.Int, 1025),