Skip to content

Commit

Permalink
fix: account encoding at api level (#600)
Browse files Browse the repository at this point in the history
  • Loading branch information
gfyrag authored Dec 5, 2024
1 parent 90cb10b commit 0c39058
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/account.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type Account struct {
Address string `json:"address" bun:"address"`
Metadata metadata.Metadata `json:"metadata" bun:"metadata,type:jsonb,default:'{}'"`
FirstUsage time.Time `json:"-" bun:"first_usage,nullzero"`
InsertionDate time.Time `json:"_" bun:"insertion_date,nullzero"`
InsertionDate time.Time `json:"-" bun:"insertion_date,nullzero"`
UpdatedAt time.Time `json:"-" bun:"updated_at,nullzero"`
Volumes VolumesByAssets `json:"volumes,omitempty" bun:"volumes,scanonly"`
EffectiveVolumes VolumesByAssets `json:"effectiveVolumes,omitempty" bun:"effective_volumes,scanonly"`
Expand Down

0 comments on commit 0c39058

Please sign in to comment.