1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-16 04:24:56 +02:00

api/message/types.go: Update TableDeltaRow

This commit is contained in:
Henrik Hautakoski 2024-01-21 12:52:17 +01:00
parent dc6dd6ae70
commit b3961f4eec

View file

@ -82,9 +82,9 @@ func (act ActionTrace) GetData() (map[string]any, error) {
}
type TableDeltaRow struct {
Present bool `json:"present" msgpack:"present"`
Data []byte `json:"data" msgpack:"data"`
RawData []byte `json:"raw_data" msgpack:"raw_data"`
Present bool `json:"present" msgpack:"present"`
Data map[string]any `json:"data" msgpack:"data"`
RawData []byte `json:"raw_data" msgpack:"raw_data"`
}
type TableDelta struct {