Skip to content

Commit

Permalink
fix migration bug (#51)
Browse files Browse the repository at this point in the history
* fix migration bug

* version
  • Loading branch information
shrimalmadhur committed Feb 9, 2024
1 parent 6f3981a commit 754ca68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/eigenlayer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pkg/types/operator_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
Expand Down

0 comments on commit 754ca68

Please sign in to comment.