mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 19:00:46 +00:00
update return error when update M1
This commit is contained in:
parent
6adb7c1d68
commit
51ef74203a
4 changed files with 70 additions and 61 deletions
|
|
@ -14,7 +14,6 @@
|
||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
// XDC is the official command-line client for Ethereum.
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
@ -26,13 +25,9 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/ethereum/go-ethereum/accounts"
|
"github.com/ethereum/go-ethereum/accounts"
|
||||||
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
|
||||||
"github.com/ethereum/go-ethereum/accounts/keystore"
|
"github.com/ethereum/go-ethereum/accounts/keystore"
|
||||||
"github.com/ethereum/go-ethereum/cmd/utils"
|
"github.com/ethereum/go-ethereum/cmd/utils"
|
||||||
"github.com/ethereum/go-ethereum/common"
|
|
||||||
"github.com/ethereum/go-ethereum/consensus/XDPoS"
|
|
||||||
"github.com/ethereum/go-ethereum/console"
|
"github.com/ethereum/go-ethereum/console"
|
||||||
validatorContract "github.com/ethereum/go-ethereum/contracts/validator/contract"
|
|
||||||
"github.com/ethereum/go-ethereum/core"
|
"github.com/ethereum/go-ethereum/core"
|
||||||
"github.com/ethereum/go-ethereum/eth"
|
"github.com/ethereum/go-ethereum/eth"
|
||||||
"github.com/ethereum/go-ethereum/ethclient"
|
"github.com/ethereum/go-ethereum/ethclient"
|
||||||
|
|
@ -51,7 +46,7 @@ var (
|
||||||
// Git SHA1 commit hash of the release (set via linker flags)
|
// Git SHA1 commit hash of the release (set via linker flags)
|
||||||
gitCommit = ""
|
gitCommit = ""
|
||||||
// The app that holds all commands and flags.
|
// The app that holds all commands and flags.
|
||||||
app = utils.NewApp(gitCommit, "the XDC command line interface")
|
app = utils.NewApp(gitCommit, "the XDCchain command line interface")
|
||||||
// flags that configure the node
|
// flags that configure the node
|
||||||
nodeFlags = []cli.Flag{
|
nodeFlags = []cli.Flag{
|
||||||
utils.IdentityFlag,
|
utils.IdentityFlag,
|
||||||
|
|
@ -354,52 +349,9 @@ func startNode(ctx *cli.Context, stack *node.Node) {
|
||||||
log.Info("Enabled staking node!!!")
|
log.Info("Enabled staking node!!!")
|
||||||
}
|
}
|
||||||
case <-core.M1Ch:
|
case <-core.M1Ch:
|
||||||
log.Info("It's time to update new set of masternodes for the next epoch...")
|
err := ethereum.BlockChain().UpdateM1()
|
||||||
// get masternodes information from smart contract
|
if(err !=nil){
|
||||||
client, err := ethclient.Dial(stack.IPCEndpoint())
|
log.Error("Error when update M1",err)
|
||||||
if err != nil {
|
|
||||||
utils.Fatalf("Fail to connect IPC: %v", err)
|
|
||||||
}
|
|
||||||
addr := common.HexToAddress(common.MasternodeVotingSMC)
|
|
||||||
validator, err := validatorContract.NewXDCValidator(addr, client)
|
|
||||||
if err != nil {
|
|
||||||
utils.Fatalf("Fail to get validator smc: %v", err)
|
|
||||||
}
|
|
||||||
opts := new(bind.CallOpts)
|
|
||||||
candidates, err := validator.GetCandidates(opts)
|
|
||||||
if err != nil {
|
|
||||||
utils.Fatalf("Can't get list of masternode candidates: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
var ms []XDPoS.Masternode
|
|
||||||
for _, candidate := range candidates {
|
|
||||||
v, err := validator.GetCandidateCap(opts, candidate)
|
|
||||||
if err != nil {
|
|
||||||
log.Warn("Can't get cap of a masternode candidate. Will ignore him", "address", candidate, "error", err)
|
|
||||||
}
|
|
||||||
//TODO: smart contract shouldn't return "0x0000000000000000000000000000000000000000"
|
|
||||||
if candidate.String() != "0x0000000000000000000000000000000000000000" {
|
|
||||||
ms = append(ms, XDPoS.Masternode{Address: candidate, Stake: v.String()})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//// order by cap
|
|
||||||
//sort.Slice(ms, func(i, j int) bool {
|
|
||||||
// return ms[i].Stake > ms[j].Stake
|
|
||||||
//})
|
|
||||||
log.Info("Ordered list of masternode candidates")
|
|
||||||
for _, m := range ms {
|
|
||||||
fmt.Printf("address: %s, stake: %s\n", m.Address.String(), m.Stake)
|
|
||||||
}
|
|
||||||
if len(ms) == 0 {
|
|
||||||
log.Info("No masternode candidates found. Keep the current masternodes set for the next epoch")
|
|
||||||
} else {
|
|
||||||
// update masternodes
|
|
||||||
log.Info("Updating new set of masternodes")
|
|
||||||
err = ethereum.UpdateMasternodes(ms)
|
|
||||||
if err != nil {
|
|
||||||
utils.Fatalf("Can't update masternodes: %v", err)
|
|
||||||
}
|
|
||||||
log.Info("Masternodes are ready for the next epoch")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -27,9 +27,12 @@ import (
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
||||||
"github.com/ethereum/go-ethereum/common"
|
"github.com/ethereum/go-ethereum/common"
|
||||||
"github.com/ethereum/go-ethereum/common/mclock"
|
"github.com/ethereum/go-ethereum/common/mclock"
|
||||||
"github.com/ethereum/go-ethereum/consensus"
|
"github.com/ethereum/go-ethereum/consensus"
|
||||||
|
"github.com/ethereum/go-ethereum/consensus/XDPoS"
|
||||||
|
contractValidator "github.com/ethereum/go-ethereum/contracts/validator/contract"
|
||||||
"github.com/ethereum/go-ethereum/core/state"
|
"github.com/ethereum/go-ethereum/core/state"
|
||||||
"github.com/ethereum/go-ethereum/core/types"
|
"github.com/ethereum/go-ethereum/core/types"
|
||||||
"github.com/ethereum/go-ethereum/core/vm"
|
"github.com/ethereum/go-ethereum/core/vm"
|
||||||
|
|
@ -1195,7 +1198,7 @@ func (bc *BlockChain) insertChain(chain types.Blocks) (int, []interface{}, []*ty
|
||||||
CheckpointCh <- 1
|
CheckpointCh <- 1
|
||||||
}
|
}
|
||||||
// prepare set of masternodes for the next epoch
|
// prepare set of masternodes for the next epoch
|
||||||
if (chain[i].NumberU64() % bc.chainConfig.XDPoS.Epoch) == (bc.chainConfig.XDPoS.Epoch - bc.chainConfig.Clique.Gap) {
|
if (chain[i].NumberU64() % bc.chainConfig.XDPoS.Epoch) == (bc.chainConfig.XDPoS.Epoch - bc.chainConfig.XDPoS.Gap) {
|
||||||
M1Ch <- 1
|
M1Ch <- 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1588,3 +1591,54 @@ func (bc *BlockChain) GetClient() (*ethclient.Client, error) {
|
||||||
|
|
||||||
return bc.Client, nil
|
return bc.Client, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (bc *BlockChain) UpdateM1() error {
|
||||||
|
if bc.Config().XDPoS == nil {
|
||||||
|
return errors.New("XDPoS not found in config")
|
||||||
|
}
|
||||||
|
engine := bc.Engine().(*XDPoS.XDPoS)
|
||||||
|
log.Info("It's time to update new set of masternodes for the next epoch...")
|
||||||
|
// get masternodes information from smart contract
|
||||||
|
client, err := ethclient.Dial(bc.IPCEndpoint)
|
||||||
|
if err != nil {
|
||||||
|
log.Crit("Fail to connect IPC: %v", err)
|
||||||
|
}
|
||||||
|
addr := common.HexToAddress(common.MasternodeVotingSMC)
|
||||||
|
validator, err := contractValidator.NewXDCValidator(addr, client)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
opts := new(bind.CallOpts)
|
||||||
|
candidates, err := validator.GetCandidates(opts)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
var ms []XDPoS.Masternode
|
||||||
|
for _, candidate := range candidates {
|
||||||
|
v, err := validator.GetCandidateCap(opts, candidate)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
//TODO: smart contract shouldn't return "0x0000000000000000000000000000000000000000"
|
||||||
|
if candidate.String() != "0x0000000000000000000000000000000000000000" {
|
||||||
|
ms = append(ms, XDPoS.Masternode{Address: candidate, Stake: v.String()})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
log.Info("Ordered list of masternode candidates")
|
||||||
|
for _, m := range ms {
|
||||||
|
fmt.Printf("address: %s, stake: %s\n", m.Address.String(), m.Stake)
|
||||||
|
}
|
||||||
|
if len(ms) == 0 {
|
||||||
|
log.Info("No masternode candidates found. Keep the current masternodes set for the next epoch")
|
||||||
|
} else {
|
||||||
|
// update masternodes
|
||||||
|
log.Info("Updating new set of masternodes")
|
||||||
|
err = engine.UpdateMasternodes(bc, bc.CurrentHeader(), ms)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
log.Info("Masternodes are ready for the next epoch")
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
@ -173,7 +173,7 @@ type LightChain interface {
|
||||||
// BlockChain encapsulates functions required to sync a (full or fast) blockchain.
|
// BlockChain encapsulates functions required to sync a (full or fast) blockchain.
|
||||||
type BlockChain interface {
|
type BlockChain interface {
|
||||||
Config() *params.ChainConfig
|
Config() *params.ChainConfig
|
||||||
UpdateM1()
|
UpdateM1() error
|
||||||
LightChain
|
LightChain
|
||||||
|
|
||||||
// HasBlock verifies a block's presence in the local chain.
|
// HasBlock verifies a block's presence in the local chain.
|
||||||
|
|
@ -1349,7 +1349,10 @@ func (d *Downloader) processFullSyncContent() error {
|
||||||
}
|
}
|
||||||
// prepare set of masternodes for the next epoch
|
// prepare set of masternodes for the next epoch
|
||||||
if (inserts[len(inserts)-1].Header.Number.Uint64() % epoch) == (epoch - gap) {
|
if (inserts[len(inserts)-1].Header.Number.Uint64() % epoch) == (epoch - gap) {
|
||||||
d.blockchain.UpdateM1()
|
err := d.blockchain.UpdateM1()
|
||||||
|
if (err != nil) {
|
||||||
|
log.Error("Error when update M1", err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
start = end + 1
|
start = end + 1
|
||||||
|
|
|
||||||
|
|
@ -458,7 +458,7 @@ func (dl *downloadTester) dropPeer(id string) {
|
||||||
|
|
||||||
// Config retrieves the blockchain's chain configuration.
|
// Config retrieves the blockchain's chain configuration.
|
||||||
func (dl *downloadTester) Config() *params.ChainConfig { return params.TestChainConfig }
|
func (dl *downloadTester) Config() *params.ChainConfig { return params.TestChainConfig }
|
||||||
func (dl *downloadTester) UpdateM1() {}
|
func (dl *downloadTester) UpdateM1() error { return nil }
|
||||||
|
|
||||||
type downloadTesterPeer struct {
|
type downloadTesterPeer struct {
|
||||||
dl *downloadTester
|
dl *downloadTester
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue