Skip to content

Commit cd74961

Browse files
authored
cmd: fix ineffectual assignment (#1563)
1 parent f46920b commit cd74961

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/puppeth/wizard_genesis.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ func (w *wizard) makeGenesis() {
449449
fmt.Println("Which accounts are allowed to confirm in Team MultiSignWallet?")
450450
var teams []common.Address
451451
if input != nil {
452-
owners = append(owners, input.MasternodesOwner)
452+
teams = append(teams, input.MasternodesOwner)
453453
} else {
454454
for {
455455
if address := w.readAddress(); address != nil {

0 commit comments

Comments
 (0)