aboutsummaryrefslogtreecommitdiffstats
path: root/core/dao_test.go
Commit message (Collapse)AuthorAgeFilesLines
* all: get rid of error when creating memory database (#16716)gary rong2018-05-091-7/+7
| | | | | | | | * all: get rid of error when create mdb * core: clean up variables definition * all: inline mdb definition
* core, trie: intermediate mempool between trie and database (#15857)Péter Szilágyi2018-02-061-6/+18
| | | This commit reduces database I/O by not writing every state trie to disk.
* accounts, consensus, core, eth: make chain maker consensus agnostic (#15497)gary rong2017-12-221-7/+7
| | | | | | | | | | * 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
* params: enable Byzantium on Ropsten/tests, fix failuresPéter Szilágyi2017-09-141-14/+22
|
* core, light: send chain events using event.Feed (#14865)Miya Chen2017-08-181-11/+6
|
* core: fix blockchain goroutine leaks in testsPéter Szilágyi2017-08-071-0/+10
|
* core: don't import genesis block in TestDAOForkRangeExtradataFelix Lange2017-04-131-4/+4
| | | | The genesis block doesn't have a valid ancestor.
* core, consensus: pluggable consensus engines (#3817)Péter Szilágyi2017-04-051-7/+7
| | | | | 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.
* core: refactor genesis handlingFelix Lange2017-03-231-7/+8
| | | | | | | | | | | | | | | | | | | | | | | | This commit solves several issues concerning the genesis block: * Genesis/ChainConfig loading was handled by cmd/geth code. This left library users in the cold. They could specify a JSON-encoded string and overwrite the config, but didn't get any of the additional checks performed by geth. * Decoding and writing of genesis JSON was conflated in WriteGenesisBlock. This made it a lot harder to embed the genesis block into the forthcoming config file loader. This commit changes things so there is a single Genesis type that represents genesis blocks. All uses of Write*Genesis* are changed to use the new type instead. * If the chain config supplied by the user was incompatible with the current chain (i.e. the chain had already advanced beyond a scheduled fork), it got overwritten. This is not an issue in practice because previous forks have always had the highest total difficulty. It might matter in the future though. The new code reverts the local chain to the point of the fork when upgrading configuration. The change to genesis block data removes compression library dependencies from package core.
* all: swap out the C++ ethash to the pure Go one (mining todo)Péter Szilágyi2017-03-091-6/+7
|
* cmd/geth, core: add support for recording SHA3 preimages (#3543)Nick Johnson2017-01-171-6/+7
|
* core, core/state, trie: EIP158, reprice & skip empty account writeJeffrey Wilcke2016-11-131-3/+3
| | | | | | | | | | | | | | | 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-0/+132
|
* Revert "core: add voting and result tracking for the dao soft-fork"Péter Szilágyi2016-06-291-358/+0
| | | | This reverts commit c4de28938ff8c688c4444c8b3e8e28a52cbc62ff.
* core: add voting and result tracking for the dao soft-forkPéter Szilágyi2016-06-231-0/+358