We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fe794cd + a764e2a commit f6037e8Copy full SHA for f6037e8
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