Skip to content

Commit

Permalink
chore: consistently don't await writeMetrics().
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris-Hibbert committed Jul 19, 2023
1 parent 332c5b3 commit 9e920c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/inter-protocol/src/vaultFactory/vaultManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -1042,7 +1042,7 @@ export const prepareVaultManagerKit = (
);

state.lockedQuote = storedCollateralQuote;
facets.helper.writeMetrics();
void facets.helper.writeMetrics();
return storedCollateralQuote;
},
/**
Expand Down Expand Up @@ -1158,7 +1158,7 @@ export const prepareVaultManagerKit = (
liquidatingVaults.delete(vault);
}

await facets.helper.writeMetrics();
void helper.writeMetrics();
},
},
},
Expand Down

0 comments on commit 9e920c3

Please sign in to comment.