vm: remove alt.stack

It is no longer present in NEO3.
This commit is contained in:
Evgenii Stratonikov 2020-07-22 13:20:30 +03:00
parent d6342ab68c
commit 261ff3c655
4 changed files with 0 additions and 18 deletions

View file

@ -51,7 +51,6 @@ func evalWithArgs(t *testing.T, src string, op []byte, args []stackitem.Item, re
func assertResult(t *testing.T, vm *vm.VM, result interface{}) {
assert.Equal(t, result, vm.PopResult())
assert.Equal(t, 0, vm.Astack().Len())
assert.Equal(t, 0, vm.Istack().Len())
}