Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hexadecimal integer literals get corrupted #202

Closed
turbolent opened this issue Feb 16, 2023 · 1 comment
Closed

Hexadecimal integer literals get corrupted #202

turbolent opened this issue Feb 16, 2023 · 1 comment
Labels
bug Something isn't working

Comments

@turbolent
Copy link
Member

Describe the bug

When Cadence code contains a hexadecimal integer literal like 0x1, it gets corrupted and evaluates to the number + 4 (number of accounts).

To Reproduce
Steps to reproduce the behavior:

  1. Run pub fun main(): Int { return 0x1 } as a script
  2. Get result {"value":"5","type":"Int"}

Expected behavior

  • Get result {"value":"1","type":"Int"}
  • Hexadecimal integer literals do not get corrupted

Screenshots

Screenshot_2023-02-16_at_12 40 26_PM

Reason

func contentAdapter(input string, fromInput bool) string {
r := regexp.MustCompile(`0x0*(\d+)`)
// we must use this logic since if we parse the address to Address type
// it outputs it in standard format which might be different to the input format
for _, addressMatch := range r.FindAllStringSubmatch(input, -1) {
original := addressMatch[0]
addr, _ := strconv.Atoi(addressMatch[1])
if fromInput {
addr = addr + numberOfServiceAccounts
} else if addr > numberOfServiceAccounts { // don't convert if service address, shouldn't happen
addr = addr - numberOfServiceAccounts
}
replaced := strings.ReplaceAll(original, addressMatch[1], fmt.Sprintf("%d", addr))
input = strings.ReplaceAll(input, original, replaced)
}
return input
}

@turbolent turbolent added the bug Something isn't working label Feb 16, 2023
@turbolent
Copy link
Member Author

Dupe of #201

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant