📜  捕获以太 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:25.109000             🧑  作者: Mango

代码示例1
pragma solidity ^0.4.21;

contract DeployChallenge {
    // This tells the CaptureTheFlag contract that the challenge is complete.
    function isComplete() public pure returns (bool) {
        return true;
    }
}