Skip to content

Commit

Permalink
Make start block not required
Browse files Browse the repository at this point in the history
  • Loading branch information
mpetrun5 committed Sep 16, 2024
1 parent 23263af commit 649de87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chains/evm/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ type EVMConfig struct {
Executor string
Hashi string
Yaho string
StartBlock uint64 `split_words:"true"`
StateRootAddresses []string `split_words:"true"`
SlotIndex uint8 `required:"true" split_words:"true"`
MaxGasPrice int64 `default:"500000000000" split_words:"true"`
GasMultiplier float64 `default:"1" split_words:"true"`
GasIncreasePercentage int64 `default:"15" split_words:"true"`
SlotIndex uint8 `required:"true" split_words:"true"`
BlockConfirmations int64 `default:"1" split_words:"true"`
BlockInterval int64 `default:"5" split_words:"true"`
BlockRetryInterval uint64 `default:"5" split_words:"true"`
StartBlock uint64 `split_words:"true" required:"true"`
FreshStart bool `default:"false" split_words:"true"`
Latest bool `default:"false" split_words:"true"`
GenericResources []string `default:"0000000000000000000000000000000000000000000000000000000000000500" split_words:"true"`
Expand Down

0 comments on commit 649de87

Please sign in to comment.