Commit bab7797d authored by Liam Horne's avatar Liam Horne

style: run yarn lint --fix at root

parent cc5beeba
...@@ -429,12 +429,12 @@ describe('Basic RPC tests', () => { ...@@ -429,12 +429,12 @@ describe('Basic RPC tests', () => {
describe('rollup_gasPrices', () => { describe('rollup_gasPrices', () => {
it('should return the L1 and L2 gas prices', async () => { it('should return the L1 and L2 gas prices', async () => {
const result = await provider.send('rollup_gasPrices', []); const result = await provider.send('rollup_gasPrices', [])
const l1GasPrice = await env.l1Wallet.provider.getGasPrice() const l1GasPrice = await env.l1Wallet.provider.getGasPrice()
const l2GasPrice = await env.gasPriceOracle.gasPrice() const l2GasPrice = await env.gasPriceOracle.gasPrice()
expect(BigNumber.from(result.l1GasPrice)).to.deep.eq(l1GasPrice) expect(BigNumber.from(result.l1GasPrice)).to.deep.eq(l1GasPrice)
expect((BigNumber.from(result.l2GasPrice))).to.deep.eq(l2GasPrice) expect(BigNumber.from(result.l2GasPrice)).to.deep.eq(l2GasPrice)
}) })
}) })
}) })
...@@ -87,12 +87,12 @@ export class Watcher { ...@@ -87,12 +87,12 @@ export class Watcher {
const successFilter: ethers.providers.Filter = { const successFilter: ethers.providers.Filter = {
address: layer.messengerAddress, address: layer.messengerAddress,
topics: [ethers.utils.id(`RelayedMessage(bytes32)`)], topics: [ethers.utils.id(`RelayedMessage(bytes32)`)],
fromBlock: startingBlock fromBlock: startingBlock,
} }
const failureFilter: ethers.providers.Filter = { const failureFilter: ethers.providers.Filter = {
address: layer.messengerAddress, address: layer.messengerAddress,
topics: [ethers.utils.id(`FailedRelayedMessage(bytes32)`)], topics: [ethers.utils.id(`FailedRelayedMessage(bytes32)`)],
fromBlock: startingBlock fromBlock: startingBlock,
} }
const successLogs = await layer.provider.getLogs(successFilter) const successLogs = await layer.provider.getLogs(successFilter)
const failureLogs = await layer.provider.getLogs(failureFilter) const failureLogs = await layer.provider.getLogs(failureFilter)
......
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