-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Co-authored-by: Julien Robert <[email protected]>
- Loading branch information
1 parent
3ecd143
commit 1aa3a28
Showing
4 changed files
with
66 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
package flag | ||
|
||
import ( | ||
"context" | ||
|
||
"google.golang.org/protobuf/reflect/protoreflect" | ||
|
||
"cosmossdk.io/math" | ||
) | ||
|
||
type decType struct{} | ||
|
||
func (a decType) NewValue(_ *context.Context, _ *Builder) Value { | ||
return &decValue{} | ||
} | ||
|
||
func (a decType) DefaultValue() string { | ||
return "0" | ||
} | ||
|
||
type decValue struct { | ||
value string | ||
} | ||
|
||
func (a decValue) Get(protoreflect.Value) (protoreflect.Value, error) { | ||
return protoreflect.ValueOf(a.value), nil | ||
} | ||
|
||
func (a decValue) String() string { | ||
return a.value | ||
} | ||
|
||
func (a *decValue) Set(s string) error { | ||
dec, err := math.LegacyNewDecFromStr(s) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
// we need to convert from float representation to non-float representation using default precision | ||
// 0.5 -> 500000000000000000 | ||
a.value = dec.BigInt().String() | ||
|
||
return nil | ||
} | ||
|
||
func (a decValue) Type() string { | ||
return "cosmos.Dec" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters