Skip to content

Commit

Permalink
fixes after review
Browse files Browse the repository at this point in the history
  • Loading branch information
miiu96 committed Feb 22, 2024
1 parent 097b9ae commit 33008cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cmd/chainsimulator/config/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cmd/chainsimulator/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 33008cf

Please sign in to comment.