transfer-gateway-example icon indicating copy to clipboard operation
transfer-gateway-example copied to clipboard

truffle-ethereum/contracts/ValidatorManagerControl.sol typo!!

Open sebkim opened this issue 7 years ago • 0 comments

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.

sebkim avatar Oct 25 '18 04:10 sebkim