From c5a9a5379e84d901368878cb496ddef5d6d8b073 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Zdyba=C5=82?= Date: Wed, 13 Apr 2022 22:31:01 +0200 Subject: [PATCH] fix: actually use new config options --- config/config.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/config.go b/config/config.go index 6837c0494..df80eba86 100644 --- a/config/config.go +++ b/config/config.go @@ -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)