cmd: fix ineffectual assignment (#1563)

This commit is contained in:
wit liu 2025-09-27 10:40:38 +08:00 committed by GitHub
parent f46920b407
commit cd74961cda
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 {