Skip to content

Commit

Permalink
Add in the two new fields for the rollup creation config
Browse files Browse the repository at this point in the history
  • Loading branch information
eljobe committed Jan 27, 2025
1 parent 5cae1e6 commit 80915fb
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions testing/rollup_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,15 +88,17 @@ func GenerateRollupConfig(
}

cfg := rollupgen.Config{
MiniStakeValues: miniStakeValues,
ConfirmPeriodBlocks: confirmPeriod,
StakeToken: stakeToken,
BaseStake: big.NewInt(1),
WasmModuleRoot: wasmModuleRoot,
Owner: rollupOwner,
LoserStakeEscrow: loserStakeEscrow,
ChainId: chainId,
ChainConfig: "{ 'config': 'Test config'}",
MiniStakeValues: miniStakeValues,
ConfirmPeriodBlocks: confirmPeriod,
StakeToken: stakeToken,
BaseStake: big.NewInt(1),
WasmModuleRoot: wasmModuleRoot,
Owner: rollupOwner,
LoserStakeEscrow: loserStakeEscrow,
ChainId: chainId,
ChainConfig: "{ 'config': 'Test config'}",
MinimumAssertionPeriod: big.NewInt(75),
ValidatorAfkBlocks: 201600,
SequencerInboxMaxTimeVariation: rollupgen.ISequencerInboxMaxTimeVariation{
DelayBlocks: big.NewInt(60 * 60 * 24 / 15),
FutureBlocks: big.NewInt(12),
Expand Down

0 comments on commit 80915fb

Please sign in to comment.