mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
eb8af2caec
This mostly means testing with evmone, but instruction renaming of difficulty->prevrandao is omitted.
13 lines
389 B
Solidity
13 lines
389 B
Solidity
contract C {
|
|
function f() public returns (uint) {
|
|
return block.difficulty;
|
|
}
|
|
}
|
|
// ====
|
|
// compileToEwasm: also
|
|
// EVMVersion: >=paris
|
|
// ----
|
|
// f() -> 0xa86c2e601b6c44eb4848f7d23d9df3113fbcac42041c49cbed5000cb4f118777
|
|
// f() -> 0xa86c2e601b6c44eb4848f7d23d9df3113fbcac42041c49cbed5000cb4f118777
|
|
// f() -> 0xa86c2e601b6c44eb4848f7d23d9df3113fbcac42041c49cbed5000cb4f118777
|