mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-21 22:24:32 +00:00
cmd: fix ineffectual assignment (#1563)
This commit is contained in:
parent
f46920b407
commit
cd74961cda
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue