ownership & killable

This commit is contained in:
tim
2025-10-19 13:35:33 -04:00
parent 5aa0032be0
commit d55be28cba
18 changed files with 364 additions and 176 deletions

View File

@@ -46,8 +46,8 @@ contract PartyPlannerTest is Test {
uint256 constant INITIAL_DEPOSIT_AMOUNT = 1000e18;
function setUp() public {
// Deploy PartyPlanner
planner = Deploy.newPartyPlanner();
// Deploy PartyPlanner owned by this test contract
planner = Deploy.newPartyPlanner(address(this));
// Deploy mock _tokens
tokenA = new MockERC20("Token A", "TKNA", 18);