Skip to content

Commit

Permalink
Merge pull request #271 from multiversx/remove-omitempty-guarded-api-…
Browse files Browse the repository at this point in the history
…field

remove 'omitempty' for the guarded api field
  • Loading branch information
raduchis authored Nov 7, 2023
2 parents e7c4fba + 1cb1d0d commit 28265ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/api/guardianData.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ type Guardian struct {
type GuardianData struct {
ActiveGuardian *Guardian `json:"activeGuardian,omitempty"`
PendingGuardian *Guardian `json:"pendingGuardian,omitempty"`
Guarded bool `json:"guarded,omitempty"`
Guarded bool `json:"guarded"`
}

0 comments on commit 28265ab

Please sign in to comment.