cosmos-sdk/types/math.go
2023-06-30 17:09:03 +00: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()
}