Skip to content

Commit

Permalink
Fix ProxyAdmin contract deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinNagpal committed Oct 16, 2024
1 parent d61b35c commit f06e83c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/deployment_manager/test/DeploymentManagerTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ export interface TestContracts {
}

export async function setupContracts(deploymentManager: DeploymentManager): Promise<TestContracts> {
let proxyAdminArgs: [] = [];
const signers = await deploymentManager.getSigners();
let proxyAdminArgs: string[] = [signers[0].address];
let proxyAdmin: ProxyAdmin = await deploymentManager.deploy(
'proxyAdmin',
'vendor/proxy/transparent/ProxyAdmin.sol',
Expand Down

0 comments on commit f06e83c

Please sign in to comment.