mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-17 18:30:45 +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?")
|
fmt.Println("Which accounts are allowed to confirm in Team MultiSignWallet?")
|
||||||
var teams []common.Address
|
var teams []common.Address
|
||||||
if input != nil {
|
if input != nil {
|
||||||
owners = append(owners, input.MasternodesOwner)
|
teams = append(teams, input.MasternodesOwner)
|
||||||
} else {
|
} else {
|
||||||
for {
|
for {
|
||||||
if address := w.readAddress(); address != nil {
|
if address := w.readAddress(); address != nil {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue