Skip to content

Commit

Permalink
remove double await (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
ngmachado authored Mar 10, 2021
1 parent b6e5145 commit e40e62e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ module.exports = async function (callback, argv, options = {}) {
}

{
const govAddress = await await sf.host.getGovernance.call();
const govAddress = await sf.host.getGovernance.call();
console.log("Governance address", govAddress);
const ownable = await sf.contracts.Ownable.at(govAddress);
if (
Expand Down

0 comments on commit e40e62e

Please sign in to comment.