From 459b498ba4e368611d30d570329f80f2e208a823 Mon Sep 17 00:00:00 2001 From: zugdev Date: Tue, 17 Sep 2024 20:12:37 -0300 Subject: [PATCH] feat: zero out unknown --- src/AutoLotteryTrap.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AutoLotteryTrap.sol b/src/AutoLotteryTrap.sol index ab313c5..44e0d8e 100644 --- a/src/AutoLotteryTrap.sol +++ b/src/AutoLotteryTrap.sol @@ -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();