Skip to content

Commit

Permalink
token id revert
Browse files Browse the repository at this point in the history
  • Loading branch information
benny-conn committed Sep 20, 2023
1 parent 0ae13fa commit 0debb94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/persist/token.go
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ func (uri TokenURI) IsHTTP() bool {
}

func (id TokenID) String() string {
return strings.ToLower(strings.TrimPrefix(util.RemoveLeftPaddedZeros(string(id)), "0x"))
return strings.ToLower(util.RemoveLeftPaddedZeros(string(id)))
}

// Value implements the driver.Valuer interface for token IDs
Expand Down

0 comments on commit 0debb94

Please sign in to comment.