mirror of
https://github.com/fluencelabs/smartcontracts
synced 2025-04-24 18:52:19 +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;
|
||
|
}
|
||
|
|
||
|
}
|