aboutsummaryrefslogtreecommitdiffstats
path: root/params/util.go
Commit message (Collapse)AuthorAgeFilesLines
* params: Hardfork block numberJeffrey Wilcke2016-11-151-2/+2
|
* core, core/state, trie: Hardfork EIP155, EIP161, EIP170Jeffrey Wilcke2016-11-151-5/+16
| | | | | | | | | | | | | | | 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>
* [release/1.4.18] params: set reprice block number to 2463000Jeffrey Wilcke2016-10-151-1/+1
| | | | (cherry picked from commit f2be249385a2bc037a9e4ebfa51b60603ee3dfb9)
* [release/1.4.18] core, core/vm: added gas price variance tableJeffrey Wilcke2016-10-151-2/+4
| | | | | | | | | | | | | | | This implements 1b & 1c of EIP150 by adding a new GasTable which must be returned from the RuleSet config method. This table is used to determine the gas prices for the current epoch. Please note that when the CreateBySuicide gas price is set it is assumed that we're in the new epoch phase. In addition this PR will serve as temporary basis while refactorisation in being done in the EVM64 PR, which will substentially overhaul the gas price code. (cherry picked from commit 64af2aafdaf16d0bab4c2b89573324b076602bab)
* [release/1.4.10] cmd, core, eth, miner, params, tests: finalize the DAO forkPéter Szilágyi2016-07-161-11/+1
| | | | (cherry picked from commit 2c2e389b778b490fcaf14d9cc45a750647ca5c68)
* [release/1.4.10] core, params, tests: add DAO hard-fork balance movesPéter Szilágyi2016-07-161-4/+5
| | | | (cherry picked from commit 461cdb593b9e5bd9ae9ac35c68809a3a29290dcb)
* [release/1.4.10] cmd/geth, miner, params: special extradata for DAO fork startPéter Szilágyi2016-07-161-5/+12
| | | | (cherry picked from commit 1e24c2e4f428c85c2f83272af2696469cb8f5bed)
* [release/1.4.10] cmd, core, eth, params: implement flags to control dao fork ↵Péter Szilágyi2016-07-161-0/+2
| | | | | | blocks (cherry picked from commit 6060e098c929792f455d7f580ed91e914d28cf3b)
* core: added basic chain configurationJeffrey Wilcke2016-04-011-11/+2
| | | | | | | | | Added chain configuration options and write out during genesis database insertion. If no "config" was found, nothing is written to the database. Configurations are written on a per genesis base. This means that any chain (which is identified by it's genesis hash) can have their own chain settings.
* params: updated homestead blockJeffrey Wilcke2016-02-291-1/+1
|
* cmd/utils, params: homestead blockJeffrey Wilcke2016-02-291-1/+5
|
* core, core/vm, crypto: fixes for homesteadJeffrey Wilcke2016-02-181-2/+1
| | | | | | * Removed some strange code that didn't apply state reverting properly * Refactored code setting from vm & state transition to the executioner * Updated tests
* parmas, crypto, core, core/vm: homestead consensus protocol changesGustav Simonsson2016-02-181-0/+30
* change gas cost for contract creating txs * invalidate signature with s value greater than secp256k1 N / 2 * OOG contract creation if not enough gas to store code * new difficulty adjustment algorithm * new DELEGATECALL op code