You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The next_key field is missing in the GetTable rows API response. It is needed to make next requests if "more" = true.
type GetTableRowsResp struct {
More bool `json:"more"`
Rows json.RawMessage `json:"rows"` // defer loading, as it depends on `JSON` being true/false.
}
The next_key field is missing in the GetTable rows API response. It is needed to make next requests if "more" = true.
Original eosio v1 API returns this field.
The text was updated successfully, but these errors were encountered: