smartcontracts/contracts/FakeCertifier.sol
2017-12-01 21:49:09 +03:00

14 lines
183 B
Solidity

pragma solidity ^0.4.18;
contract FakeCertifier {
function FakeCertifier(){
}
function certified(address _who) constant returns (bool) {
return true;
}
}