From cd74961cdada6f8ec8675881ad7d8b5f7952b7b5 Mon Sep 17 00:00:00 2001 From: wit liu <765765346@qq.com> Date: Sat, 27 Sep 2025 10:40:38 +0800 Subject: [PATCH] cmd: fix ineffectual assignment (#1563) --- cmd/puppeth/wizard_genesis.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/puppeth/wizard_genesis.go b/cmd/puppeth/wizard_genesis.go index 2a72d09759..224530ae08 100644 --- a/cmd/puppeth/wizard_genesis.go +++ b/cmd/puppeth/wizard_genesis.go @@ -449,7 +449,7 @@ func (w *wizard) makeGenesis() { fmt.Println("Which accounts are allowed to confirm in Team MultiSignWallet?") var teams []common.Address if input != nil { - owners = append(owners, input.MasternodesOwner) + teams = append(teams, input.MasternodesOwner) } else { for { if address := w.readAddress(); address != nil {