Skip to content

Commit

Permalink
updated deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikelle committed Apr 15, 2024
1 parent 322c79f commit 5e3ba1a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/DeployScripts.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ contract DeployScript is Script, Create2Deployer {

BlockTracker blockTracker = new BlockTracker{salt: salt}(msg.sender);
console.log("BlockTracker deployed to:", address(blockTracker));

blockTracker.setBlocksPerWindow(10);
console.log("BlockTracker updated with blocksPerWindow:", 10);
BidderRegistry bidderRegistry = new BidderRegistry{salt: salt}(minStake, feeRecipient, feePercent, msg.sender, address(blockTracker));
console.log("BidderRegistry deployed to:", address(bidderRegistry));

Expand Down

0 comments on commit 5e3ba1a

Please sign in to comment.