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 #201

Closed
gunnark-ab opened this issue Feb 16, 2023 · 7 comments
Closed

Hexadecimal integer literals get corrupted #201

gunnark-ab opened this issue Feb 16, 2023 · 7 comments
Assignees
Labels
bug Something isn't working

Comments

@gunnark-ab
Copy link

gunnark-ab commented Feb 16, 2023

Describe the bug

When returning 0x1 cast to Int from a Script, the Playground shows the result value as 5.

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. The returned result is:
{"value":"5","type":"Int"}

Expected behavior

  • The result should be:

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

Screenshots

Screenshot_2023-02-16_at_12 40 26_PM

Environment

  • OS: macOS Big Sur, 11.6.6
  • Browser: Chrome, 109.0.5414.119 (Official Build) (x86_64)

Reason

Address replacement logic in

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
}
should only apply to imports, not integer literals

@gunnark-ab gunnark-ab added the bug Something isn't working label Feb 16, 2023
@turbolent turbolent changed the title 0x1 returns 5 Hexadecimal integer literals get corrupted Feb 16, 2023
@turbolent
Copy link
Member

@devbugging
Copy link
Contributor

@DylanTinianov can you take a look at this, it probably is coming form the address adapters.

@DylanTinianov
Copy link
Contributor

@DylanTinianov can you take a look at this, it probably is coming form the address adapters.

I'll look into this asap.

@DylanTinianov DylanTinianov moved this to 🏗 In progress in 🌊 Flow 4D Feb 16, 2023
@turbolent
Copy link
Member

Happy to help here. Is the address adjustment logic trying to only adjust addresses in imports, or any address in the code?

import 0x1 // address in import

pub fun main(): Address {
    let number = 0x1 // integer literal, not an address

    return 0x1 // address value
}

@devbugging
Copy link
Contributor

The translation happens here https://github.com/onflow/flow-playground-api/blob/master/adapter/address.go
If I remember correctly it should do that in many different places. Probably there is a miss tho.

@DylanTinianov
Copy link
Contributor

Currently this is an edge case we don’t plan on supporting in this version of Playground, but will be fixed in Playground v2. Sorry for any inconvenience this has caused!

@github-project-automation github-project-automation bot moved this from 🏗 In progress to ✅ Done in 🌊 Flow 4D Feb 17, 2023
@bluesign
Copy link
Contributor

bluesign commented Feb 17, 2023

@DylanTinianov If v1 has some more time to live, I can make a quick PR to emulator to skip N addresses when bootstrapping. ( we can use it only with simple addresses and not effect normal users )

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

5 participants