Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
gvladika committed Oct 17, 2023
1 parent c304812 commit aabfa3c
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions test/contract/arbRollup.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,17 +271,20 @@ const setup = async () => {
const deployParams = {
config: await getDefaultConfig(),
batchPoster: await sequencer.getAddress(),
validators: [await val1.getAddress(), await val2.getAddress(), await val3.getAddress()],
validators: [
await val1.getAddress(),
await val2.getAddress(),
await val3.getAddress(),
],
maxDataSize: 117964,
nativeToken: ethers.constants.AddressZero,
deployFactoriesToL2: true,
maxFeePerGasForRetryables: maxFeePerGas,
}

const response = await rollupCreator.createRollup(
deployParams,
{ value: ethers.utils.parseEther('0.2') }
)
const response = await rollupCreator.createRollup(deployParams, {
value: ethers.utils.parseEther('0.2'),
})

const rec = await response.wait()

Expand Down

0 comments on commit aabfa3c

Please sign in to comment.