transfer-gateway-example
transfer-gateway-example copied to clipboard
truffle-ethereum/contracts/ValidatorManagerControl.sol typo!!
in this contract code,
function checkValidator(address _address) public view returns (bool) { // owner is a permanent validator if (_address == owner) { // owner should be owner() return true; } return validators[_address]; }
owner should be onwer() function.