From bfc2cc3aa3cab960910ed6133a058148333b9e2d Mon Sep 17 00:00:00 2001 From: Rjan Date: Mon, 28 Mar 2022 08:18:30 +0200 Subject: [PATCH] fix: ux: Change Propose-worker msg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changes the message so it´s clear that it´s only Storage Providers without active deadlines that needs to call 'confirm-change-worker'. --- cmd/lotus-miner/actor.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/lotus-miner/actor.go b/cmd/lotus-miner/actor.go index 6c4611327..0c4945bac 100644 --- a/cmd/lotus-miner/actor.go +++ b/cmd/lotus-miner/actor.go @@ -916,8 +916,8 @@ var actorProposeChangeWorker = &cli.Command{ return fmt.Errorf("Proposed worker address change not reflected on chain: expected '%s', found '%s'", na, mi.NewWorker) } - fmt.Fprintf(cctx.App.Writer, "Worker key change to %s successfully proposed.\n", na) - fmt.Fprintf(cctx.App.Writer, "Call 'confirm-change-worker' at or after height %d to complete.\n", mi.WorkerChangeEpoch) + fmt.Fprintf(cctx.App.Writer, "Worker key change to %s successfully sent, change happens at height %d\n", na, mi.WorkerChangeEpoch) + fmt.Fprintf(cctx.App.Writer, "If you have no active deadlines, call 'confirm-change-worker' at or after height %d to complete.\n", mi.WorkerChangeEpoch) return nil },