-
Notifications
You must be signed in to change notification settings - Fork 9
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
Comments
@DylanTinianov can you take a look at this, it probably is coming form the address adapters. |
I'll look into this asap. |
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
} |
The translation happens here https://github.com/onflow/flow-playground-api/blob/master/adapter/address.go |
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! |
@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 ) |
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:
pub fun main(): Int { return 0x1 }
as a scriptExpected behavior
The result should be:
Hexadecimal integer literals do not get corrupted
Screenshots
Environment
Reason
Address replacement logic in
flow-playground-api/adapter/address.go
Lines 50 to 70 in f4b28c1
The text was updated successfully, but these errors were encountered: