mirror of
https://github.com/fluencelabs/smartcontracts
synced 2025-07-02 03:11:34 +00:00
14 lines
183 B
Solidity
14 lines
183 B
Solidity
![]() |
pragma solidity ^0.4.18;
|
||
|
|
||
|
|
||
|
contract FakeCertifier {
|
||
|
function FakeCertifier(){
|
||
|
|
||
|
}
|
||
|
|
||
|
function certified(address _who) constant returns (bool) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
}
|