We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9103035 commit 1fab063Copy full SHA for 1fab063
1 file changed
cmd/chainsimulator/main.go
@@ -203,6 +203,13 @@ func startChainSimulator(ctx *cli.Context) error {
203
204
log.Info("simulators were initialized")
205
206
+ for shardID := uint32(0); shardID < uint32(cfg.Config.Simulator.NumOfShards); shardID++ {
207
+ err = simulator.GetNodeHandler(shardID).SetKeyValueForAddress(core.SystemAccountAddress, make(map[string]string))
208
+ if err != nil {
209
+ return err
210
+ }
211
212
+
213
err = simulator.GenerateBlocks(1)
214
if err != nil {
215
return err
0 commit comments