Skip to content

Commit

Permalink
fix: add json tag with lowercase (#1187)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariajdab authored Nov 9, 2023
1 parent ad28c2f commit 07111f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vochain/indexer/indexertypes/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
}

0 comments on commit 07111f7

Please sign in to comment.