cosmos-sdk/types/math.go
mergify[bot] d9c53bfefc
refactor!: remove types/math aliases (backport #16798) (#16803)
Co-authored-by: Julien Robert <julien@rbrt.fr>
2023-06-30 19:56:38 +02:00

10 lines
142 B
Go

package types
func (ip IntProto) String() string {
return ip.Int.String()
}
func (dp DecProto) String() string {
return dp.Dec.String()
}