Skip to content

Commit

Permalink
fix pvtkey
Browse files Browse the repository at this point in the history
  • Loading branch information
invocamanman committed Aug 21, 2023
1 parent 39a4f9c commit 1a024c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deployment/3_deployContracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,8 @@ async function main() {
);

// Transfer ownership of the proxyAdmin to timelock
await upgrades.admin.transferProxyAdminOwnership(timelockContract.address);
const proxyAdminContract = proxyAdminFactory.attach(proxyAdminAddress);
await (await proxyAdminContract.transferOwnership(timelockContract.address)).wait();
}

console.log('\n#######################');
Expand Down

0 comments on commit 1a024c1

Please sign in to comment.