Skip to content

Commit

Permalink
fix: actually use new config options
Browse files Browse the repository at this point in the history
  • Loading branch information
tzdybal committed Apr 13, 2022
1 parent a3e3988 commit c5a9a53
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ func (nc *NodeConfig) GetViperConfig(v *viper.Viper) error {
nc.Aggregator = v.GetBool(flagAggregator)
nc.DALayer = v.GetString(flagDALayer)
nc.DAConfig = v.GetString(flagDAConfig)
nc.DAStartHeight = v.GetUint64(flagDAStartHeight)
nc.DABlockTime = v.GetDuration(flagDABlockTime)
nc.BlockTime = v.GetDuration(flagBlockTime)
nsID := v.GetString(flagNamespaceID)
bytes, err := hex.DecodeString(nsID)
Expand Down

0 comments on commit c5a9a53

Please sign in to comment.