Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Admin committed Nov 29, 2024
1 parent 83aac32 commit 419b9b0
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions script/Setup.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ contract SetupScript is Script {

// 2. Setup initial funding round in QuadraticFunding
QuadraticFunding qf = QuadraticFunding(quadraticFunding);

// Configure round parameters
QuadraticFunding.RoundConfig memory config = QuadraticFunding.RoundConfig({
startTime: block.timestamp,
Expand All @@ -48,13 +48,7 @@ contract SetupScript is Script {
uint256[] memory votes = new uint256[](1);
votes[0] = 10;

Project(project).createProject(
"Sample Project",
"A sample project description",
descriptions,
funding,
votes
);
Project(project).createProject("Sample Project", "A sample project description", descriptions, funding, votes);
console2.log("Created sample project");

// 4. Verify deployer as eligible participant
Expand Down

0 comments on commit 419b9b0

Please sign in to comment.