1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-07-03 11:53:41 +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

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