Skip to content

Commit

Permalink
run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
dbcfd committed Apr 6, 2023
1 parent caa94c2 commit 27b0d25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/services/blockchain/__tests__/eth-bc-service.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ describe('ETH service with mock wallet', () => {
hash: txnResponse.hash,
}
const block = {
date: new Date(Date.UTC(2000, 1))
date: new Date(Date.UTC(2000, 1)),
}
provider.getGasPrice.mockReturnValue(gasPrice)
provider.estimateGas.mockReturnValue(gasEstimate)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ async function attempt<T>(
await Utils.delay(5000)
}
// All attempts spent
throw new Error("Failed to send transaction")
throw new Error('Failed to send transaction')
}

/**
Expand Down

0 comments on commit 27b0d25

Please sign in to comment.