From 7070faf2561990096fa8976d5806837578b2b0ca Mon Sep 17 00:00:00 2001 From: pharr117 Date: Thu, 18 Jul 2024 18:28:05 -0400 Subject: [PATCH] Fix reindex config map structure so it does not report in superfluous keys checker --- config/index_config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/index_config.go b/config/index_config.go index d54c6e0..be1125e 100644 --- a/config/index_config.go +++ b/config/index_config.go @@ -28,7 +28,7 @@ type indexBase struct { StartBlock int64 `mapstructure:"start-block"` EndBlock int64 `mapstructure:"end-block"` BlockInputFile string `mapstructure:"block-input-file"` - ReIndex bool `mapstructure:"re-index"` + ReIndex bool `mapstructure:"reindex"` RPCWorkers int64 `mapstructure:"rpc-workers"` BlockTimer int64 `mapstructure:"block-timer"` WaitForChain bool `mapstructure:"wait-for-chain"`