go/neo/proto/M: Fix decoding of RowList
Structures are encoded as arrays, but this isn't true for the structure 'RowList'. RowList in python is simply a list of lists. It's not a nested array, as using a structure would expect. Therefore we need a special case for RowList. Alternatively we could adjust proto.go to no longer use 'RowList', but simply '[][]CellInfo', but this would perhaps break N encoding.
Showing
Please register or sign in to comment