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
For EVM versions paris and later, difficulty was replaced by prevrandao
contract C {
function f() public view returns (uint256) {
return block.prevrandao;
}
function g() public view returns (uint256 ret) {
assembly {
ret := prevrandao()
}
}
}
The text was updated successfully, but these errors were encountered:
For EVM versions paris and later, difficulty was replaced by prevrandao
The text was updated successfully, but these errors were encountered: