mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 21:31:37 +00:00
remove xdc0000000000000000000000000000000000000000
This commit is contained in:
parent
e2359d9b8c
commit
2c02ddc2d9
1 changed files with 2 additions and 2 deletions
|
|
@ -2554,8 +2554,8 @@ func (bc *BlockChain) UpdateM1() error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
//TODO: smart contract shouldn't return "0x0000000000000000000000000000000000000000"
|
||||
if candidate.String() != "xdc0000000000000000000000000000000000000000" {
|
||||
// TODO: smart contract shouldn't return "0x0000000000000000000000000000000000000000"
|
||||
if !candidate.IsZero() {
|
||||
ms = append(ms, utils.Masternode{Address: candidate, Stake: v})
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue