aboutsummaryrefslogtreecommitdiffstats
path: root/consensus
diff options
context:
space:
mode:
authormark.lin <mark@maicoin.com>2017-06-14 16:49:33 +0800
committermark.lin <mark@maicoin.com>2017-06-14 16:49:33 +0800
commitdb6e6950029e97be34b9aa27c5a05ba44495091d (patch)
tree758146e2e300a3078c25d5c9ca705bbce6bb2224 /consensus
parent6171d01b1195abd7ac75044dcd507d4758d83cde (diff)
downloadgo-tangerine-db6e6950029e97be34b9aa27c5a05ba44495091d.tar
go-tangerine-db6e6950029e97be34b9aa27c5a05ba44495091d.tar.gz
go-tangerine-db6e6950029e97be34b9aa27c5a05ba44495091d.tar.bz2
go-tangerine-db6e6950029e97be34b9aa27c5a05ba44495091d.tar.lz
go-tangerine-db6e6950029e97be34b9aa27c5a05ba44495091d.tar.xz
go-tangerine-db6e6950029e97be34b9aa27c5a05ba44495091d.tar.zst
go-tangerine-db6e6950029e97be34b9aa27c5a05ba44495091d.zip
consensus/clique: choose valid votes
Diffstat (limited to 'consensus')
-rw-r--r--consensus/clique/clique.go24
-rw-r--r--consensus/clique/snapshot.go10
2 files changed, 23 insertions, 11 deletions
diff --git a/consensus/clique/clique.go b/consensus/clique/clique.go
index 87a983377..7af881ab8 100644
--- a/consensus/clique/clique.go
+++ b/consensus/clique/clique.go
@@ -504,14 +504,23 @@ func (c *Clique) Prepare(chain consensus.ChainReader, header *types.Header) erro
header.Nonce = types.BlockNonce{}
number := header.Number.Uint64()
+ // Assemble the voting snapshot
+ snap, err := c.snapshot(chain, number-1, header.ParentHash, nil)
+ if err != nil {
+ return err
+ }
if number%c.config.Epoch != 0 {
+ // Get valid votes
c.lock.RLock()
- if len(c.proposals) > 0 {
- addresses := make([]common.Address, 0, len(c.proposals))
- for address := range c.proposals {
+ var addresses []common.Address
+ for address, authorize := range c.proposals {
+ if snap.validVote(address, authorize) {
addresses = append(addresses, address)
}
- header.Coinbase = addresses[rand.Intn(len(addresses))]
+ }
+ if len(addresses) > 0 {
+ index := rand.Intn(len(addresses))
+ header.Coinbase = addresses[index]
if c.proposals[header.Coinbase] {
copy(header.Nonce[:], nonceAuthVote)
} else {
@@ -520,11 +529,8 @@ func (c *Clique) Prepare(chain consensus.ChainReader, header *types.Header) erro
}
c.lock.RUnlock()
}
- // Assemble the voting snapshot and set the correct difficulty
- snap, err := c.snapshot(chain, number-1, header.ParentHash, nil)
- if err != nil {
- return err
- }
+
+ // Set the correct difficulty
header.Difficulty = diffNoTurn
if snap.inturn(header.Number.Uint64(), c.signer) {
header.Difficulty = diffInTurn
diff --git a/consensus/clique/snapshot.go b/consensus/clique/snapshot.go
index fb86bc5e6..a17395f3c 100644
--- a/consensus/clique/snapshot.go
+++ b/consensus/clique/snapshot.go
@@ -126,11 +126,17 @@ func (s *Snapshot) copy() *Snapshot {
return cpy
}
+// validVote returns whether it makes sense to cast the specified vote in the
+// given snapshot context (e.g. don't try to add an already authorized signer).
+func (s *Snapshot) validVote(address common.Address, authorize bool) bool {
+ _, signer := s.Signers[address]
+ return (signer && !authorize) || (!signer && authorize)
+}
+
// cast adds a new vote into the tally.
func (s *Snapshot) cast(address common.Address, authorize bool) bool {
// Ensure the vote is meaningful
- _, signer := s.Signers[address]
- if (signer && authorize) || (!signer && !authorize) {
+ if !s.validVote(address, authorize) {
return false
}
// Cast the vote into an existing or new tally