From 457aac27a24d7ebbf6d683663147faa47c13f214 Mon Sep 17 00:00:00 2001 From: melsonic Date: Fri, 20 Oct 2023 11:10:25 +0530 Subject: [PATCH] feat:added bootstrap node in config --- config/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/config/config.go b/config/config.go index 600fdf10e..b26e7ce81 100644 --- a/config/config.go +++ b/config/config.go @@ -41,6 +41,7 @@ type Config struct { type NodeConfig struct { NumValidators int `toml:"num_validators"` // TODO: we can remove this now RewardAddresses []string `toml:"reward_addresses"` + BootstrapNode bool `toml:"bootstrap_node"` } func DefaultNodeConfig() *NodeConfig {