We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Constant the "hex" prefix has a wrong int value in .bpl file, for example:
bytes1 public data1 = 0x33; bytes1 public d1 = hex"33";
bytes1 public data1 = 0x33;
bytes1 public d1 = hex"33";
Assigned values in .bpl file: data1_Bytes[this] := 51; //correct d1_Bytes[this] := -1549580528; //wrong
data1_Bytes[this] := 51;
d1_Bytes[this] := -1549580528;
The text was updated successfully, but these errors were encountered:
test is present in comments in BytesTypes.sol by Ella
Sorry, something went wrong.
No branches or pull requests
Constant the "hex" prefix has a wrong int value in .bpl file, for example:
bytes1 public data1 = 0x33;
bytes1 public d1 = hex"33";
Assigned values in .bpl file:
data1_Bytes[this] := 51;
//correctd1_Bytes[this] := -1549580528;
//wrongThe text was updated successfully, but these errors were encountered: