github.com/hyperledger/burrow@v0.34.5-0.20220512172541-77f09336001d/tests/jobs_fixtures/app34-save_binary_and_deploy_binary/binary.sol (about) 1 pragma solidity >=0.0.0; 2 3 contract binary { 4 uint storedData; 5 6 function set(uint x) public { 7 storedData = x; 8 } 9 10 function get() public view returns (uint retVal) { 11 return storedData; 12 } 13 } 14