From 754ca6832861c6b1d9df3d507c04365efea70401 Mon Sep 17 00:00:00 2001 From: Madhur Shrimal Date: Fri, 9 Feb 2024 13:00:55 -0800 Subject: [PATCH] fix migration bug (#51) * fix migration bug * version --- cmd/eigenlayer/main.go | 2 +- pkg/types/operator_config.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/eigenlayer/main.go b/cmd/eigenlayer/main.go index 5859711..6d670ff 100644 --- a/cmd/eigenlayer/main.go +++ b/cmd/eigenlayer/main.go @@ -23,7 +23,7 @@ func main() { app.Name = "eigenlayer" app.Usage = "EigenLayer CLI" - app.Version = "0.6.0" + app.Version = "0.6.1" app.Copyright = "(c) 2024 EigenLabs" // Initialize the dependencies diff --git a/pkg/types/operator_config.go b/pkg/types/operator_config.go index 593c13f..a03a359 100644 --- a/pkg/types/operator_config.go +++ b/pkg/types/operator_config.go @@ -58,7 +58,7 @@ type OperatorConfigNew struct { func (config OperatorConfigNew) MarshalYAML() (interface{}, error) { return struct { Operator eigensdkTypes.Operator `yaml:"operator"` - ELDelegationManagerAddress string `yaml:"el_delegation_manager"` + ELDelegationManagerAddress string `yaml:"el_delegation_manager_address"` EthRPCUrl string `yaml:"eth_rpc_url"` PrivateKeyStorePath string `yaml:"private_key_store_path"` SignerType SignerType `yaml:"signer_type"`