From 91bef2bab863d136777c80e0fbacb825bab75938 Mon Sep 17 00:00:00 2001 From: Madhur Shrimal Date: Mon, 17 Jun 2024 12:01:33 -0500 Subject: [PATCH] add delay message (#144) * add delay message * 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 15e5b0e..36305c4 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 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 b72b8fe..a8ab885 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 operator details being shown in our webapp.\n", utils.EmojiCheckMark) return nil }, }