aboutsummaryrefslogtreecommitdiffstats
path: root/consensus/clique/clique.go
Commit message (Collapse)AuthorAgeFilesLines
* Rebrand as tangerine-network/go-tangerineWei-Ning Huang2019-09-171-13/+13
|
* Change import go github.com/dexon-foundation/dexonWei-Ning Huang2019-06-121-13/+13
|
* all: simplify timestamps to uint64 (#19372)Martin Holst Swende2019-04-081-6/+6
| | | | | | | | | | | | | | * all: simplify timestamps to uint64 * tests: update definitions * clef, faucet, mobile: leftover uint64 fixups * ethash: fix tests * graphql: update schema for timestamp * ethash: remove unused variable
* vendor, crypto, swarm: switch over to upstream sha3 packageDave McGregor2019-01-041-2/+2
|
* consensus/clique: fix comment typo (#18103)mr_franklin2018-11-141-1/+1
|
* consensus/clique: hide no transaction error (#17614)gary rong2018-09-191-6/+2
|
* consensus/clique, core: chain maker clique + error testsPéter Szilágyi2018-09-111-17/+32
|
* consensus/clique: only trust snapshot for genesis or les checkpointPéter Szilágyi2018-09-101-1/+1
|
* consensus, miner: stale block mining support (#17506)gary rong2018-08-281-16/+23
| | | | | | | | | | * consensus, miner: stale block supporting * consensus, miner: refactor seal signature * cmd, consensus, eth: add miner noverify flag * cmd, consensus, miner: polish
* miner: fix state commit, track old work packages too (#17490)gary rong2018-08-231-0/+5
| | | | | | | | | | * miner: commit state which is relative with sealing result * consensus, core, miner, mobile: introduce sealHash interface * miner: evict pending task with threshold * miner: go fmt
* consensus/clique, light: light client snapshots on RinkebyPéter Szilágyi2018-08-211-15/+16
|
* consensus/ethash: move remote agent logic to ethash internal (#15853)gary rong2018-08-031-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | * consensus/ethash: start remote ggoroutine to handle remote mining * consensus/ethash: expose remote miner api * consensus/ethash: expose submitHashrate api * miner, ethash: push empty block to sealer without waiting execution * consensus, internal: add getHashrate API for ethash * consensus: add three method for consensus interface * miner: expose consensus engine running status to miner * eth, miner: specify etherbase when miner created * miner: commit new work when consensus engine is started * consensus, miner: fix some logics * all: delete useless interfaces * consensus: polish a bit
* consensus: move test use only var/func to test(#17004)Wenbiao Zheng2018-07-241-1/+0
|
* core, consensus: fix some typos in comment code and output loghadv2018-05-191-1/+1
|
* accounts, consensus, core, eth: make chain maker consensus agnostic (#15497)gary rong2017-12-221-5/+23
| | | | | | | | | | * accounts, consensus, core, eth: make chain maker consensus agnostic * consensus, core: move CalcDifficulty to Engine interface * consensus: add docs for calcDifficulty function * consensus, core: minor comment fixups
* all: use gometalinter.v2, fix new gosimple issues (#15650)Zach2017-12-131-1/+1
|
* cmd, consensus, core, miner: instatx clique for --dev (#15323)Péter Szilágyi2017-10-241-3/+9
| | | | | | | | * cmd, consensus, core, miner: instatx clique for --dev * cmd, consensus, clique: support configurable --dev block times * cmd, core: allow --dev to use persistent storage too
* consensus/clique: add fork hash enforcement (#15236)Péter Szilágyi2017-10-101-0/+5
|
* Merge pull request #14596 from markya0616/valid_clique_votePéter Szilágyi2017-06-231-8/+15
|\ | | | | consensus/clique: choose valid votes
| * consensus/clique: minor cleanupsPéter Szilágyi2017-06-231-6/+7
| |
| * consensus/clique: choose valid votesmark.lin2017-06-141-9/+15
| |
* | consensus/clique: fix typo and don't add snapshot into recents againmark.lin2017-06-201-8/+7
| |
* | rlp, trie, contracts, compression, consensus: improve comments (#14580)S. Matthew English2017-06-121-6/+6
|/
* consensus/clique: cache block signatures for fast checksPéter Szilágyi2017-05-301-6/+12
|
* consensus/clique: fix overflow on recent signer check around genesisPéter Szilágyi2017-05-031-1/+1
|
* consensus, core, ethstats: use engine specific block beneficiary (#14318)Péter Szilágyi2017-04-121-0/+6
| | | | | | * consensus, core, ethstats: use engine specific block beneficiary * core, eth, les, miner: use explicit beneficiary during mining
* consensus/clique, internal/web3ext: support hash based API queries (#14321)Péter Szilágyi2017-04-121-3/+3
| | | | | | * consensus/clique, internal/web3ext: support hash based API queries * consensus/clique: make RPC return types public
* consensus/clique: Proof of Authority (#3753)Péter Szilágyi2017-04-101-0/+638
This PR is a prototype implementation of plugable consensus engines and the Clique PoA protocol ethereum/EIPs#225