@@ -199,7 +199,6 @@ function writeConfigs(argv: any) {
199199 } ,
200200 "node" : {
201201 "bold" : {
202- "enable" : true ,
203202 "rpc-block-number" : "latest" ,
204203 "strategy" : "makeNodes" ,
205204 "assertion-posting-interval" : "10s"
@@ -298,7 +297,7 @@ function writeConfigs(argv: any) {
298297 if ( argv . simple ) {
299298 let simpleConfig = JSON . parse ( baseConfJSON )
300299 simpleConfig . node . staker . enable = true
301- simpleConfig . node . staker [ "use-smart-contract-wallet" ] = false
300+ simpleConfig . node . staker [ "use-smart-contract-wallet" ] = false // TODO: set to true when fixed
302301 simpleConfig . node . staker . dangerous [ "without-block-validator" ] = true
303302 simpleConfig . node . sequencer = true
304303 simpleConfig . node . dangerous [ "no-sequencer-coordinator" ] = true
@@ -313,7 +312,7 @@ function writeConfigs(argv: any) {
313312 } else {
314313 let validatorConfig = JSON . parse ( baseConfJSON )
315314 validatorConfig . node . staker . enable = true
316- validatorConfig . node . staker [ "use-smart-contract-wallet" ] = false
315+ validatorConfig . node . staker [ "use-smart-contract-wallet" ] = false // TODO: set to true when fixed
317316 let validconfJSON = JSON . stringify ( validatorConfig )
318317 fs . writeFileSync ( path . join ( consts . configpath , "validator_config.json" ) , validconfJSON )
319318
@@ -353,7 +352,7 @@ function writeConfigs(argv: any) {
353352 const l3ChainInfoFile = path . join ( consts . configpath , "l3_chain_info.json" )
354353 l3Config . chain [ "info-files" ] = [ l3ChainInfoFile ]
355354 l3Config . node . staker . enable = true
356- l3Config . node . staker [ "use-smart-contract-wallet" ] = false
355+ l3Config . node . staker [ "use-smart-contract-wallet" ] = false // TODO: set to true when fixed
357356 l3Config . node . sequencer = true
358357 l3Config . execution [ "sequencer" ] . enable = true
359358 l3Config . node [ "dangerous" ] [ "no-sequencer-coordinator" ] = true
0 commit comments