chore: use sdkmath in misc packages (#14606)

Co-authored-by: atheeshp <59333759+atheeshp@users.noreply.github.com>
Co-authored-by: Marko <marbar3778@yahoo.com>
This commit is contained in:
Aleksandr Bezobchuk
2023-01-16 12:48:32 +00:00
committed by GitHub
co-authored by atheeshp Marko
parent ae1c29b8f8
commit f2b6013cee
12 changed files with 67 additions and 64 deletions
+2 -2
View File
@@ -6,12 +6,12 @@ import (
"strings"
"testing"
sdk "github.com/cosmos/cosmos-sdk/types"
sdkmath "cosmossdk.io/math"
)
func FuzzTypesDecSetString(f *testing.F) {
f.Fuzz(func(t *testing.T, b []byte) {
dec, err := sdk.NewDecFromStr(string(b))
dec, err := sdkmath.LegacyNewDecFromStr(string(b))
if err != nil {
return
}