Skip to content

Commit

Permalink
feat: zero out unknown
Browse files Browse the repository at this point in the history
  • Loading branch information
zugdev committed Sep 17, 2024
1 parent 66166ed commit 459b498
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AutoLotteryTrap.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ struct CollectOutput {
contract AutoLotteryTrap is ITrap {
// Deployed on Holesky
Lottery private lottery =
Lottery(0xdA890040Af0533D98B9F5f8FE3537720ABf83B0C);
Lottery(address(0));

function collect() external view returns (bytes memory) {
(,,uint256 endTime,uint256 totalAmount,) = lottery.currentRound();
Expand Down

0 comments on commit 459b498

Please sign in to comment.