github.com/hyperledger/burrow@v0.34.5-0.20220512172541-77f09336001d/execution/solidity/delgate_proxy.sol (about)

     1  pragma solidity ^0.5;
     2  
     3  contract DelegateProxy {
     4      address internal proxied;
     5  
     6      function setDelegate(address _proxied) public {
     7          proxied = _proxied;
     8      }
     9  
    10      function getDelegate() public view returns (address) {
    11          return proxied;
    12      }
    13  }