Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions scripts/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ function writeConfigs(argv: any) {
if (argv.simple) {
let simpleConfig = JSON.parse(baseConfJSON)
simpleConfig.node.staker.enable = true
simpleConfig.node.staker["use-smart-contract-wallet"] = false // TODO: set to true when fixed
simpleConfig.node.staker["use-smart-contract-wallet"] = true
simpleConfig.node.staker.dangerous["without-block-validator"] = true
simpleConfig.node.sequencer = true
simpleConfig.node.dangerous["no-sequencer-coordinator"] = true
Expand All @@ -325,7 +325,7 @@ function writeConfigs(argv: any) {
} else {
let validatorConfig = JSON.parse(baseConfJSON)
validatorConfig.node.staker.enable = true
validatorConfig.node.staker["use-smart-contract-wallet"] = false // TODO: set to true when fixed
validatorConfig.node.staker["use-smart-contract-wallet"] = true
let validconfJSON = JSON.stringify(validatorConfig)
fs.writeFileSync(path.join(consts.configpath, "validator_config.json"), validconfJSON)

Expand Down Expand Up @@ -367,7 +367,7 @@ function writeConfigs(argv: any) {
const l3ChainInfoFile = path.join(consts.configpath, "l3_chain_info.json")
l3Config.chain["info-files"] = [l3ChainInfoFile]
l3Config.node.staker.enable = true
l3Config.node.staker["use-smart-contract-wallet"] = false // TODO: set to true when fixed
l3Config.node.staker["use-smart-contract-wallet"] = true
l3Config.node.sequencer = true
l3Config.execution["sequencer"].enable = true
l3Config.node["dangerous"]["no-sequencer-coordinator"] = true
Expand Down
2 changes: 1 addition & 1 deletion test-node.bash
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -eu

NITRO_NODE_VERSION=offchainlabs/nitro-node:v3.7.4-9244576
NITRO_NODE_VERSION=offchainlabs/nitro-node:v3.8.0-62c0aa7
BLOCKSCOUT_VERSION=offchainlabs/blockscout:v1.1.0-0e716c8

# nitro-contract workaround for testnode
Expand Down