The archive gql should error out on incorrect filter.
The sequencer was crashing on invalid input for transfers proving.
The archive query for actions is inclusive from both sides (fromActionState and endActionState). The actionState pointer however is always the state after applying of the action. So if you have actions x, y, z, and states X := hash(init, x), Y := hash(X, y), Z := hash(Y, z), the filter from Y to Z returns both y, z.
Fixes few issues:
fromActionState
andendActionState
). TheactionState
pointer however is always the state after applying of the action. So if you have actions x, y, z, and statesX := hash(init, x)
,Y := hash(X, y)
,Z := hash(Y, z)
, the filter from Y to Z returns both y, z.