Skip to content

Commit 9c7840b

Browse files
committed
fix build issue
1 parent e459d36 commit 9c7840b

3 files changed

Lines changed: 1 addition & 3 deletions

File tree

script/DeployRouter.s.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ contract DeployScript is Script {
5656
router.setBlueprint(address(blueprint));
5757

5858
address owner = OwnableUpgradeable(address(proxy)).owner();
59-
console.log("Proxy Owner:", owner,"admin address",address(this));
59+
console.log("Proxy Owner:", owner, "admin address", address(this));
6060

6161
// set newBlueprint admin
6262
router.setBlueprintAdmin(owner);

test/BlueprintUpgradeTest.t.sol

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,5 @@ contract BlueprintTestUpgrade is Test {
303303
// check latest project id via router proxy
304304
latestProjId = iRouter.getLatestUserProjectID(address(this));
305305
assertEq(projIdV7, latestProjId);
306-
307306
}
308307
}

test/RouterV1.t.sol

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ contract RouterV1Test is Test {
7070
BlueprintV7 blueprintV7 = new BlueprintV7();
7171
proxy.upgradeToAndCall(address(blueprintV7), abi.encodeWithSignature("initialize()"));
7272

73-
7473
BlueprintV7 blueprintAdmin = BlueprintV7(address(proxy));
7574
// do some setting before convert into router proxy
7675
// Deploy and mint ERC20 token

0 commit comments

Comments
 (0)