github.com/tri-stone/burrow@v0.25.0/tests/jobs_fixtures/app53-BLOCKHASH/GetBlockHash.sol (about)

     1  pragma solidity >=0.0.0;
     2  
     3  contract GetBlockHash {
     4  
     5    function getBlockHash(uint blockNumber) view public returns (bytes32) {
     6      return blockhash(blockNumber);
     7    }
     8  }