CityOfZion/neo-boa

Issue with appending to a list

Closed this issue · 3 comments

l = [1,2,3]
l.append(5)

[I 180102 11:50:35 EventHub:102] [test_mode][SmartContract.Execution.Fail] [e96952d0043006836c4d0057a68c9779af7073bd] [[[1, 2, 3], 5], None, 6]

I can also reproduce this. Will have to see what change may have caused it...

For some reason the changes in neo-python's ExecutionEngine which support the array append opcodes got missed in a merge to master and dropped out of development. Anyways, they're there now: CityOfZion/neo-python@fe2007c

Try pulling from master and see if it works!

woo, nice work!