github.com/tri-stone/burrow@v0.25.0/tests/jobs_fixtures/app23-save_tx_hash_of_call/storage.sol (about)

     1  pragma solidity >=0.0.0;
     2  
     3  contract Storage {
     4    int storedData;
     5  
     6    function set(int x) public {
     7      storedData = x;
     8    }
     9  
    10    function get() public view returns (int retVal) {
    11      return storedData;
    12    }
    13  }
    14