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

     1  pragma solidity >=0.0.0;
     2  
     3  contract SimpleStorage {
     4    bytes storedString;
     5  
     6    function setString(bytes memory x) public {
     7      storedString = x;
     8    }
     9  
    10    function getString() public view returns (bytes memory retString) {
    11      return storedString;
    12    }
    13  }
    14