Commit fe28aa22 authored by Mark Tyneway's avatar Mark Tyneway

lint: fix

Lints the `fault-detector`.

Not sure how this made it through CI.
parent 2b168bf8
......@@ -23,7 +23,9 @@ export const findOutputForIndex = async (
l2OutputIndex: index,
}
} catch (err) {
logger?.fatal('error when calling L2OuputOracle.getL2Output', { errors: err })
logger?.fatal('error when calling L2OuputOracle.getL2Output', {
errors: err,
})
throw new Error(`unable to find output for index ${index}`)
}
}
......
......@@ -6,7 +6,12 @@ import {
validators,
waitForProvider,
} from '@eth-optimism/common-ts'
import { BedrockOutputData, getChainId, sleep, toRpcHexString } from '@eth-optimism/core-utils'
import {
BedrockOutputData,
getChainId,
sleep,
toRpcHexString,
} from '@eth-optimism/core-utils'
import { config } from 'dotenv'
import {
CONTRACT_ADDRESSES,
......
......@@ -5,10 +5,7 @@ import { getContractFactory } from '@eth-optimism/contracts-bedrock'
import { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers'
import { expect } from './setup'
import {
findOutputForIndex,
findFirstUnfinalizedStateBatchIndex,
} from '../src'
import { findOutputForIndex, findFirstUnfinalizedStateBatchIndex } from '../src'
describe('helpers', () => {
const deployConfig = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment