Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrbrt committed Dec 10, 2024
1 parent d7a87db commit 82f090f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions client/v2/autocli/flag/coin.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ func (c *coinValue) Get(protoreflect.Value) (protoreflect.Value, error) {
}

func (c *coinValue) String() string {
if c.value == nil {
return ""
}

return c.value.String()
}

Expand Down
4 changes: 4 additions & 0 deletions client/v2/autocli/flag/dec_coin.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ func (c *decCoinValue) Get(protoreflect.Value) (protoreflect.Value, error) {
}

func (c *decCoinValue) String() string {
if c.value == nil {
return ""
}

return c.value.String()
}

Expand Down

0 comments on commit 82f090f

Please sign in to comment.