Skip to content

Commit

Permalink
chore: reset gnovm changes
Browse files Browse the repository at this point in the history
Signed-off-by: Norman Meier <[email protected]>
  • Loading branch information
n0izn0iz committed Sep 18, 2023
1 parent ec5f5b7 commit 1eea98f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gnovm/docs/go-gno-compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ Additional native types:
| time | TBD |
| time/tzdata | TBD |
| unicode | TBD |
| unicode/utf16 | full |
| unicode/utf16 | TBD |
| unicode/utf8 | TBD |
| unsafe | TBD |

Expand Down
2 changes: 1 addition & 1 deletion gnovm/pkg/gnolang/values.go
Original file line number Diff line number Diff line change
Expand Up @@ -1767,7 +1767,7 @@ func (tv *TypedValue) GetPointerTo(alloc *Allocator, store Store, path ValuePath
}
case VPInterface:
if dtv.IsUndefined() {
panic(fmt.Sprintf("interface method %s call on undefined value", path.Name))
panic("interface method call on undefined value")
}
callerPath := dtv.T.GetPkgPath()
tr, _, _, _, _ := findEmbeddedFieldType(callerPath, dtv.T, path.Name, nil)
Expand Down

0 comments on commit 1eea98f

Please sign in to comment.