fixed typo

This commit is contained in:
lmittmann 2024-08-01 09:19:47 +02:00
parent 12098c50c3
commit 0db770907f

View file

@ -30,7 +30,7 @@ var stackPool = sync.Pool{
// Stack is an object for basic stack operations. Items popped to the stack are // Stack is an object for basic stack operations. Items popped to the stack are
// expected to be changed and modified. stack does not take care of adding newly // expected to be changed and modified. stack does not take care of adding newly
// initialised objects. // initialized objects.
type Stack struct { type Stack struct {
data []uint256.Int data []uint256.Int
} }