Skip to content

Commit

Permalink
realm.String() now includes version as well
Browse files Browse the repository at this point in the history
  • Loading branch information
harry-hov committed Mar 6, 2024
1 parent 0865abe commit b7c36c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnovm/pkg/gnolang/realm.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func (rlm *Realm) String() string {
} else {
return fmt.Sprintf(
"Realm{Path:%q,Time:%d}#%X",
rlm.Path, rlm.Time, rlm.ID.Bytes())
rlm.Path+"@"+rlm.Version, rlm.Time, rlm.ID.Bytes())
}
}

Expand Down

0 comments on commit b7c36c4

Please sign in to comment.