Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fuzz/types/parsecoin: use ParseCoinNormalized (#9149)
Browse files Browse the repository at this point in the history
cuonglm authored and odeke-em committed Jun 4, 2022
1 parent 393682f commit da8ea73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/types/parsecoin/fuzz.go
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ import (
)

func Fuzz(data []byte) int {
_, err := types.ParseCoin(string(data))
_, err := types.ParseCoinNormalized(string(data))
if err != nil {
return 0
}

0 comments on commit da8ea73

Please sign in to comment.