init upgrades 35bad5d9
Steve · 2023-10-17 15:38 1 file(s) · +5 −0
contracts/Operator.sol +5 −0
87 87
88 88
        goldenCorn.mint(tba, 5);
89 89
    }
90 +
91 +
    function withdraw() public onlyOwner {
92 +
        uint256 balance = address(this).balance;
93 +
        payable(owner()).transfer(balance);
94 +
    }
90 95
}