Skip to content

Commit

Permalink
Merge branch 'develop' into hardhat-deploy-2
Browse files Browse the repository at this point in the history
  • Loading branch information
jellegerbrandy committed Jan 17, 2023
2 parents 33baea8 + 59c8119 commit 4e95097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/004_deploy_arbitrator.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const func = async function (hre) {
log: true,
});

if ((await read('HATGovernanceArbitrator', {}, 'owner')) != (await deployments.get('HATTimelockController')).address) {
if ((await read('HATGovernanceArbitrator', {}, 'owner')) !== (await deployments.get('HATTimelockController')).address) {
await execute('HATGovernanceArbitrator', { from: deployer, log: true }, 'transferOwnership', (await deployments.get('HATTimelockController')).address);
}
};
Expand Down

0 comments on commit 4e95097

Please sign in to comment.