diff --git a/vochain/indexer/indexertypes/types.go b/vochain/indexer/indexertypes/types.go index 7766f8ca9..536610f32 100644 --- a/vochain/indexer/indexertypes/types.go +++ b/vochain/indexer/indexertypes/types.go @@ -237,6 +237,6 @@ type Account struct { // TokenTransfersAccount contains the tokes transfers received and sent information in an account type TokenTransfersAccount struct { - Received []*TokenTransferMeta - Sent []*TokenTransferMeta + Received []*TokenTransferMeta `json:"received"` + Sent []*TokenTransferMeta `json:"sent"` }