Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
mvertes committed Jan 23, 2025
1 parent f724616 commit 6544a85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gno.land/pkg/sdk/vm/convert.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func convertArgToGno(arg string, argT gno.Type) (tv gno.TypedValue) {
"error parsing int %q: %v",
arg, err))
}
tv.SetInt(int(i64))
tv.SetInt(i64)
return
case gno.Int8Type:
assertNoPlusPrefix(arg)
Expand Down Expand Up @@ -100,7 +100,7 @@ func convertArgToGno(arg string, argT gno.Type) (tv gno.TypedValue) {
"error parsing uint %q: %v",
arg, err))
}
tv.SetUint(uint(u64))
tv.SetUint(u64)

Check warning on line 103 in gno.land/pkg/sdk/vm/convert.go

View check run for this annotation

Codecov / codecov/patch

gno.land/pkg/sdk/vm/convert.go#L103

Added line #L103 was not covered by tests
return
case gno.Uint8Type:
assertNoPlusPrefix(arg)
Expand Down

0 comments on commit 6544a85

Please sign in to comment.