Skip to content

Commit

Permalink
fix(a3p): remove duplicated await
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge-Lopes authored Dec 17, 2024
1 parent bc1f87a commit cc4c1a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export const makeGovernanceDriver = async (fetch, networkConfig) => {
};

const getLatestQuestion = async () => {
const { latestOutcome, latestQuestion } = await await retryUntilCondition(
const { latestOutcome, latestQuestion } = await retryUntilCondition(
() => fetchLatestEcQuestion({ follow: agoric.follow }),
electionResult =>
checkCommitteeElectionResult(electionResult, {
Expand Down

0 comments on commit cc4c1a2

Please sign in to comment.