Skip to content

Commit

Permalink
Remove pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
chipshort committed Jul 5, 2023
1 parent 0618fb1 commit b39e91d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func (c *Coins) UnmarshalJSON(data []byte) error {
type DenomMetadata struct {
Description string `json:"description"`
// DenomUnits represents the list of DenomUnits for a given coin
DenomUnits []*DenomUnit `json:"denom_units"`
DenomUnits []DenomUnit `json:"denom_units"`
// Base represents the base denom (should be the DenomUnit with exponent = 0).
Base string `json:"base"`
// Display indicates the suggested denom that should be
Expand Down

0 comments on commit b39e91d

Please sign in to comment.