Skip to content

Commit

Permalink
fix: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nicole-obrien committed Aug 29, 2023
1 parent 154bbfb commit 90b9372
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@
let maxGasFee: BigIntLike | undefined = undefined
async function setGasVariables(sendFlowParameters: SendFlowParameters): Promise<void> {
if (isToLayer2) {
({ estimatedGasFee, maxGasFee } = await getGasFeesForLayer1ToLayer2Transaction(sendFlowParameters))
const gasFees = await getGasFeesForLayer1ToLayer2Transaction(sendFlowParameters)
estimatedGasFee = gasFees.estimatedGasFee
maxGasFee = gasFees.maxGasFee
}
}
$: void setGasVariables(sendFlowParameters)
Expand Down

0 comments on commit 90b9372

Please sign in to comment.