smartcontracts/contracts/FakeCertifier.sol

14 lines
183 B
Solidity
Raw Normal View History

2017-12-01 21:49:09 +03:00
pragma solidity ^0.4.18;
contract FakeCertifier {
function FakeCertifier(){
}
function certified(address _who) constant returns (bool) {
return true;
}
}