fix foundational account index issue

pull/1005/head
chao 6 years ago committed by chaosma
parent bc49564d17
commit b3557f4ddd
  1. 2
      internal/genesis/genesis.go

@ -45,7 +45,7 @@ func FindAccount(address string) (int, *DeployAccount) {
}
for i, acc := range GenesisFNAccounts {
if address == acc.Address {
return i, &acc
return i + 8, &acc
}
}
return 0, nil

Loading…
Cancel
Save