Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
jcortejoso committed Feb 28, 2024
1 parent 7c760e5 commit da9fbc0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions packages/celotool/src/cmds/geth/simulate_client.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* tslint:disable no-console */
/* eslint-disable no-console */
import BigNumber from 'bignumber.js'
import {
AccountType,
Expand Down Expand Up @@ -157,8 +157,7 @@ export const handler = async (argv: SimulateClientArgv) => {
console.info(
`Account for recipient index ${argv.recipientIndex} thread ${thread}, final index ${recipientIndex}: ${recipientAddress}`
)
// tslint:disable-next-line: no-floating-promises
simulateClient(
void simulateClient(
senderPK,
recipientAddress,
argv.contractAddress,
Expand Down
2 changes: 1 addition & 1 deletion packages/celotool/src/lib/geth.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable no-console: 0 */
/* eslint-disable no-console */
import { CeloTxReceipt, TransactionResult } from '@celo/connect'
import { CeloContract, ContractKit, newKitFromWeb3 } from '@celo/contractkit'
import { GoldTokenWrapper } from '@celo/contractkit/lib/wrappers/GoldTokenWrapper'
Expand Down

0 comments on commit da9fbc0

Please sign in to comment.