solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/569_block_blockhash_deprecated.sol

8 lines
200 B
Solidity
Raw Normal View History

contract C {
function f() public view returns (bytes32) {
return block.blockhash(3);
}
}
// ----
// Warning: (77-92): "block.blockhash()" has been deprecated in favor of "blockhash()"