From 33008cfb85a41ff14967436d4ec278241d2c842e Mon Sep 17 00:00:00 2001 From: Iuga Mihai Date: Thu, 22 Feb 2024 13:09:06 +0200 Subject: [PATCH] fixes after review --- README.md | 2 +- cmd/chainsimulator/config/config.toml | 2 +- cmd/chainsimulator/flags.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a5c687a7..4061d94c 100644 --- a/README.md +++ b/README.md @@ -257,7 +257,7 @@ The **_[config.toml](./cmd/chainsimulator/config/config.toml)_** file: # rounds-per-epoch specifies the number of rounds per epoch rounds-per-epoch = 20 # initial-round specifies with what round the chain simulator will start - initial-round = 1 + initial-round = 0 # initial-nonce specifies with what nonce the chain simulator will start initial-nonce = 0 # initial-epoch specifies with what epoch the chain simulator will start diff --git a/cmd/chainsimulator/config/config.toml b/cmd/chainsimulator/config/config.toml index 4de125a1..efdbfa6f 100644 --- a/cmd/chainsimulator/config/config.toml +++ b/cmd/chainsimulator/config/config.toml @@ -9,7 +9,7 @@ # rounds-per-epoch specifies the number of rounds per epoch rounds-per-epoch = 20 # initial-round when the chain simulator will start - initial-round = 1 + initial-round = 0 # initial-epoch when the chain simulator will start initial-epoch = 0 # initial-nonce when the chain simulator will start diff --git a/cmd/chainsimulator/flags.go b/cmd/chainsimulator/flags.go index 934d282c..b285b08d 100644 --- a/cmd/chainsimulator/flags.go +++ b/cmd/chainsimulator/flags.go @@ -84,7 +84,7 @@ var ( initialRound = cli.Uint64Flag{ Name: "initial-round", Usage: "This flag is used to specify the initial round when chain simulator will start", - Value: 1, + Value: 0, } initialNonce = cli.Uint64Flag{ Name: "initial-nonce",