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
This was found as part of the Bulletproofing program
Calling this function
function getDifficulty () public view returns (uint256) { return block.difficulty; }
produces this error
"message": "failed to apply message: message execution failed: exit 24, msg receipt: , reason: message failed with backtrace:\n00: f010866 (method 3844450837) -- get beacon randomness failed with an unexpected error: illegal argument (24)\n--> caused by: rand::get_beacon_randomness -- cgo extern 'get_beacon_randomness' failed with error code -3 (1: illegal argument)\n (RetCode=24)"
The text was updated successfully, but these errors were encountered:
When I'm getting this error in Remix my local lotus shows this error
ERROR rand rand/rand.go:164 failed to get beacon entry as expected: cannot draw randomness from the future
Sorry, something went wrong.
Should be fixed by filecoin-project/lotus#10216, but I haven't tested it.
Basically, when estimating gas and testing messages, we were passing a chain height in the future with the wrong tipset.
Stebalien
Successfully merging a pull request may close this issue.
This was found as part of the Bulletproofing program
Calling this function
produces this error
The text was updated successfully, but these errors were encountered: