智能合约启动build模式

bool public isBooted = false;
string public mode;

function startDay() public {
emit Gm();
isBooted = true;
mode = “build”;
}