From ed19910bbb1e3c123b3de42249958ca341252a1e Mon Sep 17 00:00:00 2001 From: Madhur Shrimal Date: Mon, 17 Jun 2024 11:52:12 -0500 Subject: [PATCH 1/2] add delay message --- pkg/operator/register.go | 2 +- pkg/operator/update.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/operator/register.go b/pkg/operator/register.go index 15e5b0e4..64617133 100644 --- a/pkg/operator/register.go +++ b/pkg/operator/register.go @@ -128,7 +128,7 @@ func RegisterCmd(p utils.Prompter) *cli.Command { return nil } - fmt.Printf("%s Operator is registered successfully to EigenLayer\n", utils.EmojiCheckMark) + fmt.Printf("%s Operator is registered successfully to EigenLayer. There is a 30 minute delay between registration and operators details being shown in our webapp\n", utils.EmojiCheckMark) return nil }, } diff --git a/pkg/operator/update.go b/pkg/operator/update.go index b72b8fef..76d26b76 100644 --- a/pkg/operator/update.go +++ b/pkg/operator/update.go @@ -95,7 +95,7 @@ func UpdateCmd(p utils.Prompter) *cli.Command { ) printRegistrationInfo("", common.HexToAddress(operatorCfg.Operator.Address), &operatorCfg.ChainId) - fmt.Printf("%s Operator updated successfully\n", utils.EmojiCheckMark) + fmt.Printf("%s Operator updated successfully. There is a 30 minute delay between update and operators details being shown in our webapp\n", utils.EmojiCheckMark) return nil }, } From b17fcf093f8154418430611e9c3568e4c3bd9179 Mon Sep 17 00:00:00 2001 From: Madhur Shrimal Date: Mon, 17 Jun 2024 11:57:55 -0500 Subject: [PATCH 2/2] update --- pkg/operator/register.go | 2 +- pkg/operator/update.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/operator/register.go b/pkg/operator/register.go index 64617133..36305c40 100644 --- a/pkg/operator/register.go +++ b/pkg/operator/register.go @@ -128,7 +128,7 @@ func RegisterCmd(p utils.Prompter) *cli.Command { return nil } - fmt.Printf("%s Operator is registered successfully to EigenLayer. There is a 30 minute delay between registration and operators details being shown in our webapp\n", utils.EmojiCheckMark) + fmt.Printf("%s Operator is registered successfully to EigenLayer. There is a 30 minute delay between registration and operator details being shown in our webapp.\n", utils.EmojiCheckMark) return nil }, } diff --git a/pkg/operator/update.go b/pkg/operator/update.go index 76d26b76..a8ab8859 100644 --- a/pkg/operator/update.go +++ b/pkg/operator/update.go @@ -95,7 +95,7 @@ func UpdateCmd(p utils.Prompter) *cli.Command { ) printRegistrationInfo("", common.HexToAddress(operatorCfg.Operator.Address), &operatorCfg.ChainId) - fmt.Printf("%s Operator updated successfully. There is a 30 minute delay between update and operators details being shown in our webapp\n", utils.EmojiCheckMark) + fmt.Printf("%s Operator updated successfully. There is a 30 minute delay between update and operator details being shown in our webapp.\n", utils.EmojiCheckMark) return nil }, }