Skip to content

Commit

Permalink
Fix timeboost seq conf, initally must be false
Browse files Browse the repository at this point in the history
  • Loading branch information
Tristan-Wilson committed Oct 22, 2024
1 parent a4dedcb commit bad7cdc
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions scripts/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -310,9 +310,11 @@ function writeConfigs(argv: any) {
sequencerConfig.execution["sequencer"].enable = true
sequencerConfig.node["delayed-sequencer"].enable = true
if (argv.timeboost) {
sequencerConfig.execution.sequencer.timeboost = {
"enable": true
};
// Initially we create it disabled but then replace it using test-node.bash
// once we have the contract and auctioneer address.
sequencerConfig.execution.sequencer.timeboost = {
"enable": false
};
}
fs.writeFileSync(path.join(consts.configpath, "sequencer_config.json"), JSON.stringify(sequencerConfig))

Expand Down

0 comments on commit bad7cdc

Please sign in to comment.