Issue with appending to a list
Closed this issue · 3 comments
chris-poli commented
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]
localhuman commented
I can also reproduce this. Will have to see what change may have caused it...
localhuman commented
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!
chris-poli commented
woo, nice work!