aboutsummaryrefslogtreecommitdiffstats
path: root/core/chain_pow_test.go
Commit message (Collapse)AuthorAgeFilesLines
* core, consensus: pluggable consensus engines (#3817)Péter Szilágyi2017-04-051-238/+0
| | | | | This commit adds pluggable consensus engines to go-ethereum. In short, it introduces a generic consensus interface, and refactors the entire codebase to use this interface.
* all: swap out the C++ ethash to the pure Go one (mining todo)Péter Szilágyi2017-03-091-12/+16
|
* core, core/state, trie: EIP158, reprice & skip empty account writeJeffrey Wilcke2016-11-131-3/+4
| | | | | | | | | | | | | | | This commit implements EIP158 part 1, 2, 3 & 4 1. If an account is empty it's no longer written to the trie. An empty account is defined as (balance=0, nonce=0, storage=0, code=0). 2. Delete an empty account if it's touched 3. An empty account is redefined as either non-existent or empty. 4. Zero value calls and zero value suicides no longer consume the 25k reation costs. params: moved core/config to params Signed-off-by: Jeffrey Wilcke <jeffrey@ethereum.org>
* accounts, core, eth: pass chain config for chain maker to test DAOPéter Szilágyi2016-07-151-3/+3
|
* core, eth: receipt chain reconstructionPéter Szilágyi2015-10-191-3/+3
|
* all: Add GPU mining, disabled by defaultGustav Simonsson2015-10-071-2/+2
|
* core: separate and contain POW verifier, extensive testsPéter Szilágyi2015-09-211-0/+233