Skip to content

Commit

Permalink
fix: update DeploySingle to match args
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoAcosta committed Nov 26, 2024
1 parent 4a46a6f commit 589b6a1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions script/deploy/DeploySingle.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,12 @@ contract DeploySingle is Script {
// Deploy Questions
FixedQuestion question1 = deployQuestion(address(space), address(0), args.question1, address(plasa));
FixedQuestion question2 = deployQuestion(address(space), address(0), args.question2, address(plasa));
FixedQuestion question3 = deployQuestion(address(space), address(0), args.question3, address(plasa));

// Add questions to space
space.addQuestion(address(question1));
space.addQuestion(address(question2));
space.addQuestion(address(question3));

vm.stopBroadcast();

Expand All @@ -105,5 +107,6 @@ contract DeploySingle is Script {
}
console.log("Question 1 deployed at:", address(question1));
console.log("Question 2 deployed at:", address(question2));
console.log("Question 3 deployed at:", address(question3));
}
}

0 comments on commit 589b6a1

Please sign in to comment.