2020-12-09 19:47:50 +00:00
|
|
|
contract C {
|
|
|
|
function f() public returns (uint) {
|
|
|
|
return block.difficulty;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ====
|
2021-04-23 15:59:01 +00:00
|
|
|
// compileToEwasm: also
|
2020-12-09 19:47:50 +00:00
|
|
|
// ----
|
|
|
|
// f() -> 200000000
|
|
|
|
// f() -> 200000000
|
|
|
|
// f() -> 200000000
|