You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, Guys. I'm developing a hash function in Neo smart contract and used some bitwise operations. Then I find that there is a precision loss for big integer's display.
For example, when I compute 87 << 56, I get 6269010681299730000 instead of 6269010681299730432, which means the last 3 numbers are lost.
The text was updated successfully, but these errors were encountered:
Hi, Guys. I'm developing a hash function in Neo smart contract and used some bitwise operations. Then I find that there is a precision loss for big integer's display.
For example, when I compute
87 << 56
, I get6269010681299730000
instead of6269010681299730432
, which means the last 3 numbers are lost.The text was updated successfully, but these errors were encountered: