aboutsummaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* crypto: add btcec fallback for sign/recover without cgo (#3680)Felix Lange2017-02-181-10/+16
| | | | | | | | | | | * vendor: add github.com/btcsuite/btcd/btcec * crypto: add btcec fallback for sign/recover without cgo This commit adds a non-cgo fallback implementation of secp256k1 operations. * crypto, core/vm: remove wrappers for sha256, ripemd160
* logger: remove Core verbosity level (#3659)Felix Lange2017-02-155-13/+13
|
* params: core, core/vm, miner: 64bit gas instructionsJeffrey Wilcke2017-02-1424-681/+843
| | | | | | | | | | | | | | | | | Reworked the EVM gas instructions to use 64bit integers rather than arbitrary size big ints. All gas operations, be it additions, multiplications or divisions, are checked and guarded against 64 bit integer overflows. In additon, most of the protocol paramaters in the params package have been converted to uint64 and are now constants rather than variables. * common/math: added overflow check ops * core: vmenv, env renamed to evm * eth, internal/ethapi, les: unmetered eth_call and cancel methods * core/vm: implemented big.Int pool for evm instructions * core/vm: unexported intPool methods & verification methods * core/vm: added memoryGasCost overflow check and test
* core, eth, internal: Added `debug_getBadBlocks()` method (#3654)Martin Holst Swende2017-02-142-1/+30
| | | | | | | | | | | | | | | | * core,eth,internal: Added `debug_getBadBlocks()` method When bad blocks are discovered, these are stored within geth. An RPC-endpoint makes them availablewithin the `debug` namespace. This feature makes it easier to discover network forks. ``` * core, api: go format + docs * core/blockchain: Documentation, fix minor nitpick * core: fix failing blockchain test
* Revert "params: core, core/vm, miner: 64bit gas instructions (#3514)"Jeffrey Wilcke2017-02-1325-1076/+922
| | | | This reverts commit 8b57c494908637a5c0e74f8f7a13b3218e026757.
* core: ignore 0x prefix for code in JSON genesis blocks (#3656)Martin Holst Swende2017-02-131-1/+1
|
* Merge pull request #3635 from holiman/hive_fixesPéter Szilágyi2017-02-031-0/+2
|\ | | | | core/genesis: add support for setting nonce in 'alloc'
| * core/genesis: add support for setting nonce in 'alloc'Martin Holst Swende2017-01-251-0/+2
| | | | | | | | This is to be able to set `pre`-state when performing blockchain tests through Hive, we need to be able to set the nonce.
* | Merge pull request #3605 from fjl/event-feedPéter Szilágyi2017-02-031-1/+1
|\ \ | | | | | | event: add new Subscription type and related utilities
| * | event: deprecate TypeMux and related typesFelix Lange2017-01-251-1/+1
| |/ | | | | | | | | | | | | | | | | | | | | The Subscription type is gone, all uses are replaced by *TypeMuxSubscription. This change is prep-work for the introduction of the new Subscription type in a later commit. gorename -from '"github.com/ethereum/go-ethereum/event"::Event' -to TypeMuxEvent gorename -from '"github.com/ethereum/go-ethereum/event"::muxsub' -to TypeMuxSubscription gofmt -w -r 'Subscription -> *TypeMuxSubscription' ./event/*.go find . -name '*.go' -and -not -regex '\./vendor/.*' \| xargs gofmt -w -r 'event.Subscription -> *event.TypeMuxSubscription'
* | params: core, core/vm, miner: 64bit gas instructions (#3514)Jeffrey Wilcke2017-02-0224-631/+793
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reworked the EVM gas instructions to use 64bit integers rather than arbitrary size big ints. All gas operations, be it additions, multiplications or divisions, are checked and guarded against 64 bit integer overflows. In additon, most of the protocol paramaters in the params package have been converted to uint64 and are now constants rather than variables. * common/math: added overflow check ops * core: vmenv, env renamed to evm * eth, internal/ethapi, les: unmetered eth_call and cancel methods * core/vm: implemented big.Int pool for evm instructions * core/vm: unexported intPool methods & verification methods * core/vm: added memoryGasCost overflow check and test
* | state: take write lock in GetNonce (#3625)Brian Schroeder2017-02-011-3/+5
| | | | | | | | We must take a write lock here because `GetNonce` calls `StateDB.GetStateObject`, which mutates the DB's live set.
* | core/types: add unittest for tx json serialization (#3609)bas-vk2017-01-271-1/+43
| |
* | core: fix a small typo in blockchain.go (#3611)Vivek Anand2017-01-261-1/+1
|/
* core/types: make Transaction zero value printable (#3595)Felix Lange2017-01-241-14/+18
|
* types: bugfix invalid V derivation on tx json unmarshal (#3594)bas-vk2017-01-212-2/+3
|
* core: removal of dead-codeJeffrey Wilcke2017-01-181-3/+0
| | | | | | Removal of dead code that appeard as if we had a consensus issue. This however is not the case as the proper error catching happens in the vm package instead.
* core/blockchain: Made logging of reorgs more structured (#3573)Martin Holst Swende2017-01-171-6/+13
| | | | | | | | * core: Made logging of reorgs more structured, also always log if reorg is > 63 blocks long * core/blockchain: go fmt * core/blockchain: Minor fixes to the reorg reporting
* cmd/geth, core: add support for recording SHA3 preimages (#3543)Nick Johnson2017-01-1715-35/+118
|
* eth: accept leading zeros for nonce parameter of submitWork (#3558)Felix Lange2017-01-131-2/+2
|
* core: remove support for Olympic networkBas van Kervel2017-01-122-28/+11
|
* core: improve import log alignmentFelix Lange2017-01-112-10/+8
|
* Merge pull request #3535 from fjl/all-ineffassignPéter Szilágyi2017-01-102-6/+5
|\ | | | | all: fix ineffectual assignments
| * all: fix ineffectual assignments and remove uses of crypto.Sha3Felix Lange2017-01-092-6/+5
| | | | | | | | | | go get github.com/gordonklaus/ineffassign ineffassign .
* | core: fix race condition in WriteMipmapBloomBas van Kervel2017-01-091-0/+6
|/
* all: fix spelling errorsPéter Szilágyi2017-01-074-7/+7
|
* logger, pow/dagger, pow/ezp: delete dead codeFelix Lange2017-01-072-7/+2
|
* all: fix issues reported by honnef.co/go/simple/cmd/gosimpleFelix Lange2017-01-076-18/+9
|
* all: gofmt -w -sFelix Lange2017-01-069-143/+143
|
* Merge pull request #3516 from fjl/types-drop-sign-ecdsaPéter Szilágyi2017-01-068-75/+34
|\ | | | | core/types: remove redundant SignECDSA wrappers, rename to SignTx
| * core/types: remove redundant SignECDSA wrappers, rename to SignTxFelix Lange2017-01-058-75/+34
| |
* | Merge pull request #3518 from fjl/ethclient-dependency-cleanupPéter Szilágyi2017-01-0618-91/+84
|\ \ | | | | | | core/types: dependency cleanup
| * | trie: remove dependency on ethdbFelix Lange2017-01-062-9/+8
| | | | | | | | | | | | This removes the core/types -> leveldb dependency.
| * | core/vm: move Log to core/typesFelix Lange2017-01-0616-82/+76
| |/ | | | | | | | | | | | | | | This significantly reduces the dependency closure of ethclient, which no longer depends on core/vm as of this change. All uses of vm.Logs are replaced by []*types.Log. NewLog is gone too, the constructor simply returned a literal.
* | Merge pull request #3515 from bas-vk/exportropstenPéter Szilágyi2017-01-052-1/+5
|\ \ | |/ |/| core,cmd/utils: bugfix for ropsten dump imports
| * core,cmd/utils: bugfix for ropsten dump importsBas van Kervel2017-01-052-1/+5
| |
* | core/vm: improved EVM run loop & instruction calling (#3378)Jeffrey Wilcke2017-01-0528-1946/+1607
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The run loop, which previously contained custom opcode executes have been removed and has been simplified to a few checks. Each operation consists of 4 elements: execution function, gas cost function, stack validation function and memory size function. The execution function implements the operation's runtime behaviour, the gas cost function implements the operation gas costs function and greatly depends on the memory and stack, the stack validation function validates the stack and makes sure that enough items can be popped off and pushed on and the memory size function calculates the memory required for the operation and returns it. This commit also allows the EVM to go unmetered. This is helpful for offline operations such as contract calls.
* | accounts, core, crypto, internal: use normalised V during signature handling ↵Péter Szilágyi2017-01-055-96/+27
|/ | | | | | | | | (#3455) To address increasing complexity in code that handles signatures, this PR discards all notion of "different" signature types at the library level. Both the crypto and accounts package is reduced to only be able to produce plain canonical secp256k1 signatures. This makes the crpyto APIs much cleaner, simpler and harder to abuse.
* core, light: allow zero cost txs from inexistent accounts tooPéter Szilágyi2016-12-162-20/+8
|
* Merge pull request #3433 from karalabe/badblock-order-fixPéter Szilágyi2016-12-142-3/+40
|\ | | | | core: import future blocks one-by-one, enfore chain ancestry
| * core: import future blocks one-by-one, enfore chain ancestryPéter Szilágyi2016-12-132-3/+40
| |
* | core: init pending state in tx pool on creationBas van Kervel2016-12-131-10/+4
|/
* core: bugfix state change race condition in txpool (#3412)bas-vk2016-12-112-36/+124
| | | | | | | | The transaction pool keeps track of the current nonce in its local pendingState. When a new block comes in the pendingState is reset. During the reset it fetches multiple times the current state through the use of the currentState callback. When a second block comes in during the reset its possible that the state changes during the reset. If that block holds transactions that are currently in the pool the local pendingState that is used to determine nonces can get out of sync.
* core, core/vm: implemented a generic environment (#3348)Jeffrey Wilcke2016-12-0623-797/+783
| | | | | | | | Environment is now a struct (not an interface). This reduces a lot of tech-debt throughout the codebase where a virtual machine environment had to be implemented in order to test or run it. The new environment is suitable to be used en the json tests, core consensus and light client.
* core, core/vm, eth/filters: move Removed field into vm.LogFelix Lange2016-12-054-56/+189
| | | | | | | | | | | | This field used to be assigned by the filter system and returned through the RPC API. Now that we have a Go client that uses the underlying type, the field needs to move. It is now assigned to true when the RemovedLogs event is generated so the filter system doesn't need to care about the field at all. While here, remove the log list from ChainSideEvent. There are no users of this field right now and any potential users could subscribe to RemovedLogsEvent instead.
* core/types: Document Transaction.To (#3366)Steven Roose2016-11-291-0/+2
|
* core/types: use package hexutil for JSON handlingFelix Lange2016-11-286-392/+40
|
* core/vm: use package hexutil for JSON handlingFelix Lange2016-11-282-28/+23
|
* core: fixed unwinding bad hash (#3347)Jeffrey Wilcke2016-11-281-3/+8
| | | Fixed unwinding of bad hashes when already on the canon chain
* core: eip unit tests (#3309)Jeffrey Wilcke2016-11-281-7/+71
|
* Merge pull request #3341 from obscuren/touch-delete-fixFelix Lange2016-11-255-2/+53
|\ | | | | core, core/state: fixed consensus issue added touch revert
| * core, core/state: fixed consensus issue added touch revertJeffrey Wilcke2016-11-255-2/+53
| | | | | | | | | | Implemented proper touch revert journal entries and copied a Parity consensus bug in order to remain in sync with the current longest chain.
* | core: remove dead eventPéter Szilágyi2016-11-241-3/+0
|/
* core: improved bad block error reporting (#3320)Jeffrey Wilcke2016-11-233-18/+31
|
* core: implemented new ropsten testnetJeffrey Wilcke2016-11-232-25/+15
|
* cmd/geth, core, light, mobile: removed state account StartingNonceJeffrey Wilcke2016-11-232-8/+4
| | | | All account's nonce start at 0.
* core: Don't perform EIP150 hash check on uncles (#3303)Nick Johnson2016-11-181-1/+1
|
* core, core/types: refactored tx chain id checking (#3257)Jeffrey Wilcke2016-11-154-12/+48
|\ | | | | | | | | | | | | | | * core, core/types: refactored tx chain id checking Refactored explicit chain id checking in to the Sender deriviation method * cmd/utils, params: define chain ids
| * core, core/types: refactored tx chain id checkingJeffrey Wilcke2016-11-144-12/+48
| | | | | | | | Refactored explicit chain id checking in to the Sender deriviation method
* | mobile: initial wrappers for mobile supportPéter Szilágyi2016-11-141-2/+2
| |
* | core/types: turn off nonce checking for Call messagesZsolt Felfoldi2016-11-141-15/+18
|/
* core/vm/runtime: fixed go vetJeffrey Wilcke2016-11-141-1/+9
|
* core, params: EIP#170Jeffrey Wilcke2016-11-141-3/+5
|
* core/types, params: EIP#155Jeffrey Wilcke2016-11-1317-202/+839
|
* core/vm, params: EIP160: EXP repriceJeffrey Wilcke2016-11-131-1/+2
|
* core, core/state, trie: EIP158, reprice & skip empty account writeJeffrey Wilcke2016-11-1334-281/+319
| | | | | | | | | | | | | | | 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>
* all: update license informationFelix Lange2016-11-091-0/+16
|
* core/types: remove header accessorsFelix Lange2016-11-092-15/+6
| | | | | | These accessors were introduced by light client changes, but the only method that is actually used is GetNumberU64. This commit replaces all uses of .GetNumberU64 with .Number.Uint64.
* light: light chain, VM env and tx poolZsolt Felfoldi2016-11-093-27/+84
|
* common/math, core/vm: implement fast EXP (#3214)Jeffrey Wilcke2016-11-021-2/+3
| | | | | | | * common/math, core/vm: implement fast EXP. Courtesy @chfast & @karalabe * common/math: fix go vet issues on exp calculation
* core: metrics collection for transaction events (#3157)Martin Holst Swende2016-11-011-0/+30
| | | | | | | | | | | | | | | | * core: Add metrics collection for transaction events; replace/discard for pending and future queues, as well as invalid transactions * core: change namespace for txpool metrics * core: define more metrics (not yet used) * core: implement more tx metrics for when transactions are dropped * core: minor formatting tweeks (will squash later) * core: remove superfluous meter, fix missing pending nofunds * core, metrics: switch txpool meters to counters
* Merge pull request #3216 from karalabe/fastsync-bigdb-tuningPéter Szilágyi2016-11-012-7/+9
|\ | | | | core/state, eth/downloader, trie: reset fast-failure on progress
| * core/state, eth/downloader, trie: reset fast-failure on progressPéter Szilágyi2016-10-312-7/+9
| |
* | Merge pull request #3064 from pirapira/limit_struct_logsJeffrey Wilcke2016-10-313-3/+14
|\ \ | |/ |/| core/vm: add limit option to LogConfig
| * vm, ethapi: add `limit` option to traceTransactionYoichi Hirai2016-09-303-3/+14
| | | | | | | | | | | | | | | | | | | | | | | | that specifies the maximum number of elements in the `structLogs` output. This option is useful for debugging a transaction that involves a large number of repetition. For example, ``` debug.traceTransaction(tx, {disableStorage: true, limit: 2}) ``` shows at most the first two steps in the `structLogs`.
* | cmd, params: only set default fork configs for test and mainnetPéter Szilágyi2016-10-291-1/+1
| |
* | cmd/utils, core, params: explicitly pick reprice fork for fast syncPéter Szilágyi2016-10-292-2/+12
| |
* | internal/ethapi: add personal_sign and fix eth_sign to hash message (#2940)bas-vk2016-10-293-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit includes several API changes: - The behavior of eth_sign is changed. It now accepts an arbitrary message, prepends the well-known string \x19Ethereum Signed Message:\n<length of message> hashes the result using keccak256 and calculates the signature of the hash. This breaks backwards compatability! - personal_sign(hash, address [, password]) is added. It has the same semantics as eth_sign but also accepts a password. The private key used to sign the hash is temporarily unlocked in the scope of the request. - personal_recover(message, signature) is added and returns the address for the account that created a signature.
* | core/vm: Ignore EnableJit ChainConfig setting (#3166)Hao Bryan Cheng2016-10-211-1/+3
| |
* | cmd/geth, code, eth/downloader: tune import logs and mem statsPéter Szilágyi2016-10-212-3/+16
| |
* | cmd/geth, trie: report on trie cache unloads, also add debug logPéter Szilágyi2016-10-191-0/+2
| |
* | cmd, core/state: allow configurable trie cache generationsPéter Szilágyi2016-10-191-5/+5
| |
* | Merge pull request #3168 from benjaminbrent/developJeffrey Wilcke2016-10-191-1/+1
|\ \ | | | | | | core/vm: fix GASPRICE string (resolves #2553)
| * | core/vm: fix GASPRICE string (resolves #2553)Benjamin Brent2016-10-191-1/+1
| | |
* | | Merge pull request #3153 from fjl/trie-unload-fixJeffrey Wilcke2016-10-191-4/+4
|\ \ \ | |/ / |/| | trie: improve cache unloading mechanism
| * | core/state: bump trie cache values slightlyFelix Lange2016-10-181-4/+4
| | |
* | | Merge pull request #3156 from holiman/metrics-blocksJeffrey Wilcke2016-10-181-0/+2
|\ \ \ | | | | | | | | core: Add block processing time metric collection
| * | | core: Add block processing time metric collectionMartin Holst Swende2016-10-181-0/+2
| |/ /
* / / common, core, eth/downloader: adjust import log formattingPéter Szilágyi2016-10-182-18/+30
|/ /
* | Merge pull request #3111 from obscuren/gas-price-forkPéter Szilágyi2016-10-157-20/+129
|\ \ | | | | | | core, core/vm: added gas price variance table (EIP #150)
| * | core, core/vm: added gas price variance tableJeffrey Wilcke2016-10-157-20/+129
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | Merge pull request #3138 from karalabe/txpool-pending-limitsPéter Szilágyi2016-10-152-5/+150
|\ \ \ | | | | | | | | core: add global (soft) limits on the pending transactions
| * | | core: add global (soft) limits on the pending transactionsPéter Szilágyi2016-10-142-5/+150
| | | |
* | | | trie, core/state: improve memory usage and performance (#3135)Felix Lange2016-10-153-7/+10
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * trie: store nodes as pointers This avoids memory copies when unwrapping node interface values. name old time/op new time/op delta Get 388ns ± 8% 215ns ± 2% -44.56% (p=0.000 n=15+15) GetDB 363ns ± 3% 202ns ± 2% -44.21% (p=0.000 n=15+15) UpdateBE 1.57µs ± 2% 1.29µs ± 3% -17.80% (p=0.000 n=13+15) UpdateLE 1.92µs ± 2% 1.61µs ± 2% -16.25% (p=0.000 n=14+14) HashBE 2.16µs ± 6% 2.18µs ± 6% ~ (p=0.436 n=15+15) HashLE 7.43µs ± 3% 7.21µs ± 3% -2.96% (p=0.000 n=15+13) * trie: close temporary databases in GetDB benchmark * trie: don't keep []byte from DB load around Nodes decoded from a DB load kept hashes and values as sub-slices of the DB value. This can be a problem because loading from leveldb often returns []byte with a cap that's larger than necessary, increasing memory usage. * trie: unload old cached nodes * trie, core/state: use cache unloading for account trie * trie: use explicit private flags (fixes Go 1.5 reflection issue). * trie: fixup cachegen overflow at request of nick * core/state: rename journal size constant
* | | core: fixed import reporterJeffrey Wilcke2016-10-111-1/+1
| | |
* | | Merge pull request #3104 from fjl/core-import-logFelix Lange2016-10-111-11/+42
|\ \ \ | | | | | | | | core: print import stats more often
| * | | core: print import stats more oftenFelix Lange2016-10-081-11/+42
| | | | | | | | | | | | | | | | | | | | | | | | If geth is busy importing 2048 heavy blocks it can take a while before it prints anything. This change ensures that a message gets printed every 8s.
* | | | core: lower transaction pool max queue limitFelix Lange2016-10-101-1/+1
|/ / /
* | | Merge pull request #3088 from bas-vk/rpc-block-outputFelix Lange2016-10-072-5/+5
|\ \ \ | |/ / |/| | core/types: renamed receiptRoot to receiptsRoot
| * | core/types: renamed receiptRoot to receiptsRootBas van Kervel2016-10-052-5/+5
| | |
* | | Merge pull request #3094 from fjl/tests-updateFelix Lange2016-10-061-2/+3
|\ \ \ | | | | | | | | tests: update test files from github.com/ethereum/tests @ 45bc1d21d3c1
| * | | tests: update test files from github.com/ethereum/tests @ 45bc1d21d3c1Felix Lange2016-10-061-2/+3
| |/ / | | | | | | | | | | | | | | | Two new tests are skipped because they're buggy. Making some newer random state tests work required implementing the 'compressed return value encoding'.
* | | core/state: optimize GetStateFelix Lange2016-10-061-5/+7
| | | | | | | | | | | | There is no need to use the reflection-based decoder to decode []byte.
* | | core/state: rename Delete/IsDeleted to Suicide/HasSuicidedFelix Lange2016-10-069-32/+35
| | | | | | | | | | | | The delete/remove naming has caused endless confusion in the past.
* | | core/state: implement reverts by journaling all changesFelix Lange2016-10-0615-161/+602
|/ / | | | | | | | | | | | | | | | | | | This commit replaces the deep-copy based state revert mechanism with a linear complexity journal. This commit also hides several internal StateDB methods to limit the number of ways in which calling code can use the journal incorrectly. As usual consultation and bug fixes to the initial implementation were provided by @karalabe, @obscuren and @Arachnid. Thank you!
* | core/state: track dirty state entries for each objectPéter Szilágyi2016-10-032-18/+24
| |
* | cmd, core, internal, light, tests: avoid hashing the code in the VMPéter Szilágyi2016-10-0112-31/+47
|/
* core, eth, trie: reuse trie journals in all our codePéter Szilágyi2016-09-282-10/+48
|
* core, trie: replace state caches with trie journalFelix Lange2016-09-284-63/+69
|
* core/state: track all accounts in canon stateFelix Lange2016-09-2610-310/+392
| | | | | This change introduces a global, per-state cache that keeps account data in the canon state. Thanks to @karalabe for lots of fixes.
* core/state: short-circuit balance change if zero valueGustav Simonsson2016-09-261-0/+6
|
* core/state, light: remove unused StateObject.initCodeGustav Simonsson2016-09-192-6/+0
|
* Merge pull request #3006 from Arachnid/patchPéter Szilágyi2016-09-193-5/+8
|\ | | | | core/state: Fix memory expansion bug by not copying clean objects
| * core/state: Fix memory expansion bug by not copying clean objectsNick Johnson2016-09-193-5/+8
| |
* | core/types: add core type marshal methods tooPéter Szilágyi2016-09-084-0/+131
| |
* | core: abstract out a sorted transaction hash mapPéter Szilágyi2016-09-024-222/+229
| |
* | core: add upper bound on the queued transctionsPéter Szilágyi2016-09-023-33/+203
| |
* | core/types, miner: switch over to the grouped tx setsPéter Szilágyi2016-09-022-32/+58
| |
* | core, eth, internal, miner: optimize txpool for quick opsPéter Szilágyi2016-09-026-401/+751
| |
* | core, eth, miner: only retain 1 tx/nonce, remove bad onesPéter Szilágyi2016-09-022-164/+251
| |
* | core/types, core/vm: improve docs, add JSON marshaling methodsFelix Lange2016-08-048-99/+589
| | | | | | | | | | | | | | | | In this commit, core/types's types learn how to encode and decode themselves as JSON. The encoding is very similar to what the RPC API uses. The RPC API is missing some output fields (e.g. transaction signature values) which will be added to the API in a later commit. Some fields that the API generates are ignored by the decoder methods here.
* | core/vm, eth: Add support for javascript trace functionsNick Johnson2016-08-232-9/+6
| |
* | core/vm: Refactor tracing to make Tracer the main interfaceNick Johnson2016-08-2212-176/+136
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This CL makes several refactors: - Define a Tracer interface, implementing the `CaptureState` method - Add the VM environment as the first argument of `Tracer.CaptureState` - Rename existing functionality `StructLogger` an make it an implementation of `Tracer` - Delete `StructLogCollector` and make `StructLogger` collect the logs directly - Change all callers to use the new `StructLogger` where necessary and extract logs from that. - Deletes the apparently obsolete and likely nonfunctional 'TraceCall' from the eth API. Callers that only wish accumulated logs can use the `StructLogger` implementation straightforwardly. Callers that wish to efficiently capture VM traces and operate on them without excessive copying can now implement the `Tracer` interface to receive VM state at each step and do with it as they wish. This CL also removes the accumulation of logs from the vm.Environment; this was necessary as part of the refactor, but also simplifies it by removing a responsibility that doesn't directly belong to the Environment.
* | Merge pull request #2909 from fjl/account-manager-cleanupFelix Lange2016-08-181-16/+0
|\ \ | | | | | | all: clean up tech debt left behind by the API split
| * | core, miner: move Backend to minerFelix Lange2016-08-171-15/+0
| | | | | | | | | | | | | | | This ensures that package core doesn't depend on package accounts and resolves an age-old TODO.
| * | eth: remove dapp database remainsFelix Lange2016-08-171-1/+0
| | |
* | | rpc: refactor subscriptions and filtersBas van Kervel2016-08-171-0/+22
| | |
* | | core: ensure the canonical block is written before the canonical hash is setBas van Kervel2016-08-164-17/+63
|/ /
* | core/vm: hide ecrecover error messageFelix Lange2016-08-061-2/+2
| | | | | | | | Fixes #2825
* | cmd, core, eth, miner, params, tests: finalize the DAO forkPéter Szilágyi2016-07-153-45/+75
| |
* | accounts, core, eth: pass chain config for chain maker to test DAOPéter Szilágyi2016-07-159-123/+172
| |
* | core, params, tests: add DAO hard-fork balance movesPéter Szilágyi2016-07-151-1/+22
| |
* | core, eth: enforce network split post DAO hard-forkPéter Szilágyi2016-07-151-0/+7
| |
* | cmd, core, miner: add extradata validation to consensus rulesPéter Szilágyi2016-07-153-2/+129
| |
* | core: gracefully handle missing homestead block configPéter Szilágyi2016-07-151-1/+1
| |
* | cmd, core, eth, params: implement flags to control dao fork blocksPéter Szilágyi2016-07-151-2/+2
| |
* | Merge pull request #2724 from pirapira/fix_reset_feesPéter Szilágyi2016-07-152-2/+2
|\ \ | |/ |/| vm: Replace some SstoreClearGas with SstoreResetGas
| * vm: Replace some SstoreClearGas with SstoreResetGasYoichi Hirai2016-06-222-2/+2
| |
* | Merge pull request #2799 from zsfelfoldi/api-nonce-fix2Péter Szilágyi2016-07-122-2/+6
|\ \ | | | | | | core: added CheckNonce() to Message interface
| * | core: added CheckNonce() to Message interfacezsfelfoldi2016-07-112-2/+6
| | |
* | | core: solve a remote-import/local-mine data racePéter Szilágyi2016-07-081-4/+3
|/ /
* | Merge pull request #2159 from zsfelfoldi/light-backendPéter Szilágyi2016-06-301-0/+2
|\ \ | | | | | | eth: separate common and full node-specific API and backend service
| * | eth: separate common and full node-specific API and backend servicezsfelfoldi2016-06-161-0/+2
| | |
* | | Revert "test, cmd/evm, core, core/vm: illegal code hash implementation"Péter Szilágyi2016-06-298-77/+29
| | | | | | | | | | | | This reverts commit 7a5b571c671e70e0e4807cf971c15e2d1e09d33d.
* | | Revert "core: add voting and result tracking for the dao soft-fork"Péter Szilágyi2016-06-294-429/+13
| | | | | | | | | | | | This reverts commit c4de28938ff8c688c4444c8b3e8e28a52cbc62ff.
* | | Revert "core: update DAO soft-fork number, clean up the code"Péter Szilágyi2016-06-297-40/+51
| | | | | | | | | | | | This reverts commit ba784bdf36f2daf7827ec1ec864f3393ba8d86a0.
* | | Revert "core: update the DAO soft fork proposal to the final block"Péter Szilágyi2016-06-291-1/+1
| | | | | | | | | | | | This reverts commit 1e3a7d4fab36df9382d023519ef10e3c34bafa3b.
* | | core: update the DAO soft fork proposal to the final blockPéter Szilágyi2016-06-241-1/+1
| | |
* | | core: update DAO soft-fork number, clean up the codePéter Szilágyi2016-06-237-51/+40
| | |
* | | core: add voting and result tracking for the dao soft-forkPéter Szilágyi2016-06-234-13/+429
| | |
* | | test, cmd/evm, core, core/vm: illegal code hash implementationJeffrey Wilcke2016-06-228-29/+77
| | | | | | | | | | | | | | | | | | | | | | | | This implements a generic approach to enabling soft forks by allowing anyone to put in hashes of contracts that should not be interacted from. This will help "The DAO" in their endevour to stop any whithdrawals from any DAO contract by convincing the mining community to accept their code hash.
* | | README, core, rpc: fix various typosFabio Berger2016-06-221-3/+3
| |/ |/|
* | Merge pull request #2686 from obscuren/issue-2542Péter Szilágyi2016-06-141-0/+21
|\ \ | |/ |/| core/state, eth: Updated suicides objects when tracing transactions
| * core/state, eth: Updated suicides objects when tracing transactionsJeffrey Wilcke2016-06-131-0/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Consensus rules dictate that objects can only be removed during the finalisation of the transaction (i.e. after all calls have finished). Thus calling a suicided contract twice from the same transaction: A->B(S)->ret(A)->B(S) results in 2 suicides. Calling the suicided object twice from two transactions: A->B(S), A->B, results in only one suicide and a call to an empty object. Our current debug tracing functionality replays all transaction that were executed prior to the targetted transaction in order to provide the user with an accurate trace. As a side effect to calling StateDB.IntermediateRoot it also deletes any suicides objects. Our tracing code never calls this function because it isn't interested in the intermediate root. Becasue of this it caused a bug in the tracing code where transactions that were send to priviously deleted objects resulted in two suicides rather than one suicide and a call to an empty object. Fixes #2542
* | core: improved chainDb using sequential keyszsfelfoldi2016-06-079-210/+320
| |
* | core: chain read/write speed benchmarkszsfelfoldi2016-06-061-0/+119
|/
* core: add missing lock in TxPool.{GetTransaction,RemoveTx}Felix Lange2016-06-031-1/+10
| | | | Fixes #2650
* Merge pull request #2585 from karalabe/trie-dirty-trackingJeffrey Wilcke2016-05-312-1/+28
|\ | | | | core, core/state, trie: enterprise hand-tuned multi-level caching
| * core, core/state, trie: enterprise hand-tuned multi-level cachingPéter Szilágyi2016-05-262-1/+28
| |
* | core/state: return the starting nonce for non-existent accs (testnet)Péter Szilágyi2016-05-271-1/+1
|/
* eth: enable bad block reportsFelix Lange2016-05-253-78/+5
| | | | | | | | | | | | We used to have reporting of bad blocks, but it was disabled before the Frontier release. We need it back because users are usually unable to provide the full RLP data of a bad block when it occurs. A shortcoming of this particular implementation is that the origin peer is not tracked for blocks received during eth/63 sync. No origin peer info is still better than no report at all though.
* core: Simplify bloom9 tests with available convenience method `TestBytes`Fabio Berger2016-05-231-2/+2
|
* core: fixed pointer assignmentJeffrey Wilcke2016-05-131-2/+2
| | | | | | This fixes an issue where it's theoretical possible to cause a consensus failure when hitting the lower end of the difficulty, though pratically impossible it's worth a fix.
* core, eth, miner: improve shutdown synchronisationFelix Lange2016-05-091-4/+7
| | | | | | | | | | | | | | | | | | | | Shutting down geth prints hundreds of annoying error messages in some cases. The errors appear because the Stop method of eth.ProtocolManager, miner.Miner and core.TxPool is asynchronous. Left over peer sessions generate events which are processed after Stop even though the database has already been closed. The fix is to make Stop synchronous using sync.WaitGroup. For eth.ProtocolManager, in order to make use of WaitGroup safe, we need a way to stop new peer sessions from being added while waiting on the WaitGroup. The eth protocol Run function now selects on a signaling channel and adds to the WaitGroup only if ProtocolManager is not shutting down. For miner.worker and core.TxPool the number of goroutines is static, WaitGroup can be used in the usual way without additional synchronisation.
* core: Provide a public accessor for ChainConfigNicholas Johnson2016-04-291-0/+3
| | | | This is necessary for external users of the go-ethereum code who want to, for instance, build a custom node that plays back transactions, as core.ApplyTransaction requires a ChainConfig as a parameter.
* core, eth: added json tag field for proper unmarshallingJeffrey Wilcke2016-04-251-1/+1
| | | | | | | | | According to our own instructions the genesis config attribute should be "config". The genesis definition in the go code, however, has a field called `ChainConfig`. This field now has a `json:"config"` struct tag so that the json is properly unmarshalled. This fixes #2482
* all: fix go vet warningsFelix Lange2016-04-155-12/+8
|
* core/state: fix TestDumpFelix Lange2016-04-153-9/+27
| | | | Lazy "I'll just put return here instead of fixing the test" found by go vet.
* core, core/types, eth: add and use Block.BodyFelix Lange2016-04-154-5/+8
| | | | | This fixes a few uses of unkeyed Body literals which go vet was complaining about.
* all: update license informationFelix Lange2016-04-1522-15/+113
|
* core, miner: remove Frontier canaryPéter Szilágyi2016-04-041-51/+0
|
* core: transition db now also returns the required gas amountJeffrey Wilcke2016-04-011-7/+24
| | | | | | | | | Exposes some core methods to transition and compute new state information and adds an additional return value to the transition db method to fetch required gas for that particular message (excluding gas refunds from any SSTORE[X] = 0 and SUICIDE. Fixes #2395
* accounts/a/b/backends, core: chain maker homestead block set to 0Jeffrey Wilcke2016-04-014-24/+12
| | | | | | | The chain maker and the simulated backend now run with a homestead phase beginning at block 0 (i.e. there's no frontier). This commit also fixes up #2388
* core: added basic chain configurationJeffrey Wilcke2016-04-0131-159/+295
| | | | | | | | | 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.
* core, eth, cmd: temporary work around for enabling the jitJeffrey Wilcke2016-03-241-1/+6
| | | | | This commit serves as a temporary workaround for enabling the jit until the block customisation PR is merged in.
* core: Added EVM configuration optionsJeffrey Wilcke2016-03-2420-194/+385
| | | | | The EVM is now initialised with an additional configured object that allows you to turn on debugging options.
* core, core/vm, tests: changed the initialisation behaviour of the EVMJeffrey Wilcke2016-03-2311-42/+34
| | | | | | | The EVM was previously initialised and created for every CALL, CALLCODE, DELEGATECALL and CREATE. This PR changes this behaviour so that the same EVM can be used through the session and beyond as long as the Environment sticks around.
* Merge pull request #2341 from leijurv/patch-2Péter Szilágyi2016-03-161-3/+3
|\ | | | | core: fixed various typos
| * core: fixed various typosLeif Jurvetson2016-03-161-3/+3
| |
* | core, eth: replace reorganiz with reorganisLeif Jurvetson2016-03-163-6/+6
| |
* | core: various typosLeif Jurvetson2016-03-1621-39/+39
|/
* Merge pull request #2311 from obscuren/future-proc-fixJeffrey Wilcke2016-03-121-14/+15
|\ | | | | core: added future proc mutex lock
| * core: added future proc mutex lockJeffrey Wilcke2016-03-111-14/+15
| | | | | | | | | | | | | | | | | | | | Added a future lock which prevents the anything being added or removed from or to the set when looping over the set of blocks. This fixes a nil pointer in the range loop when trying to retrieve a block from the set which was previously available but removed due to regular chain processing. Fixes #2305
* | core: cache fresh headers and tds to avoid db trashingPéter Szilágyi2016-03-112-20/+52
|/
* core: create a header chain structure shared by core.BlockChain and ↵zsfelfoldi2016-03-104-345/+575
| | | | light.LightChain
* Merge pull request #2301 from obscuren/uncle-fixJeffrey Wilcke2016-03-102-6/+101
|\ | | | | core: announce ChainSideEvent during reorg
| * core: announce ChainSideEvent during reorgJeffrey Wilcke2016-03-082-6/+101
| | | | | | | | | | | | | | | | | | | | | | Previously all blocks that were already in our chain were never re announced as potential uncle block (e.g. ChainSideEvent). This is problematic during mining where you want to gather as much possible uncles as possible increasing the profit. This is now addressed in this PR where during reorganisations of chains the old chain is regarded as uncles. Fixed #2298
* | cmd, eth, ethdb, node: prioritise chaindata for resources, bump cachePéter Szilágyi2016-03-092-2/+2
|/
* Merge pull request #2267 from karalabe/pending-state-eventsPéter Szilágyi2016-03-021-0/+3
|\ | | | | core, miner: add PendingStateEvent to track non-log updates.
| * core, miner: add PendingStateEvent to track non-log updatesPéter Szilágyi2016-02-291-0/+3
| |
* | Merge pull request #2215 from bas-vk/estimategasPéter Szilágyi2016-03-011-1/+1
|\ \ | |/ |/| core: improved check for contract creation
| * core: improved check for contract creationBas van Kervel2016-02-161-1/+1
| |
* | Merge pull request #2242 from jimenezrick/upstream-cryptoJeffrey Wilcke2016-02-2411-13/+13
|\ \ | | | | | | Closes #2241: Use Keccak-256 from golang.org/x/crypto/sha3 and mention explicitly
| * | all: Rename crypto.Sha3{,Hash}() to crypto.Keccak256{,Hash}()Ricardo Catalinas Jiménez2016-02-2211-13/+13
| | | | | | | | | | | | As we aren't really using the standarized SHA-3
* | | Merge pull request #2095 from karalabe/trie-node-iteratorPéter Szilágyi2016-02-233-3/+314
|\ \ \ | |/ / |/| | core/state, trie: add node iterator, test state/trie sync consistency
| * | core/state, trie: switch iterator panics to error fieldsPéter Szilágyi2016-02-162-26/+37
| | |
| * | core/state, trie: node iterator reports parent hashes tooPéter Szilágyi2016-02-161-7/+13
| | |
| * | core/state, trie: surface iterator entry hashesPéter Szilágyi2016-02-163-7/+67
| | |
| * | core/state, trie: add node iterator, test state/trie sync consistencyPéter Szilágyi2016-02-162-3/+237
| |/
* | core: Added new TD strategy which mitigate the risk for selfish miningJeffrey Wilcke2016-02-181-6/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Assuming the following scenario where a miner has 15% of all hashing power and the ability to exert a moderate control over the network to the point where if the attacker sees a message A, it can't stop A from propagating, but what it **can** do is send a message B and ensure that most nodes see B before A. The attacker can then selfish mine and augment selfish mining strategy by giving his own blocks an advantage. This change makes the time at which a block is received less relevant and so the level of control an attacker has over the network no longer makes a difference. This change changes the current td algorithm `B_td > C_td` to the new algorithm `B_td > C_td || B_td == C_td && rnd < 0.5`.
* | core, core/vm, crypto: fixes for homesteadJeffrey Wilcke2016-02-1820-191/+210
| | | | | | | | | | | | * 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-1821-130/+407
|/ | | | | | | | * 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
* eth/filters: ✨ pending logs ✨Jeffrey Wilcke2016-02-133-4/+9
| | | | | | Pending logs are now filterable through the Go API. Filter API changed such that each filter type has it's own bucket and adding filter explicitly requires you specify the bucket to put it in.
* core/vm/runtime: simplified runtime calling mechanismJeffrey Wilcke2016-02-113-18/+117
| | | | | | Implemented `runtime.Call` which uses - unlike Execute - the given state for the execution and the address of the contract you wish to execute. Unlike `Execute`, `Call` requires a config.
* Merge pull request #2134 from karalabe/save-state-writesPéter Szilágyi2016-02-032-3/+127
|\ | | | | core/state, trie: don't leak database writes before commit
| * core/state, ethdb, trie: test intermediate secure key leak, fix memdb bugPéter Szilágyi2016-01-201-0/+68
| |
| * core/state, trie: don't leak database writes before commitPéter Szilágyi2016-01-202-3/+59
| |
* | Merge pull request #2156 from ppratscher/add_replay_txPéter Szilágyi2016-02-032-1/+3
|\ \ | | | | | | core/vm, rpc/api: added debug_replayTransaction RPC call
| * | core/vm, rpc/api: renamed to debug.replayTransaction, migrated to new RPC, ↵Peter Pratscher2016-02-022-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | integrated feedback Integrated code review suggestions Integrated last review comments
* | | core, eth, rpc/api: rpc method to inspect the txpool queuePéter Szilágyi2016-02-011-0/+30
|/ /
* | core, core/types, miner: fix transaction nonce-price combo sortPéter Szilágyi2016-01-223-17/+127
| |
* | Merge pull request #2115 from karalabe/vm-debug-storageJeffrey Wilcke2016-01-214-14/+20
|\ \ | |/ |/| core/vm: resolve circular dependency to debug vm storage
| * core/vm: resolve circular dependency to debug vm storagePéter Szilágyi2016-01-124-14/+20
| |
* | core/state: always commit in batches, just finish if not needed laterPéter Szilágyi2016-01-131-1/+2
|/
* core: fix invalid state reuse in chain maker based testsPéter Szilágyi2016-01-111-12/+7
|
* Merge pull request #2097 from karalabe/block-state-checksJeffrey Wilcke2016-01-052-1/+13
|\ | | | | core, eth/downloader: ensure state presence in ancestor lookup
| * core, eth/downloader: ensure state presence in ancestor lookupPéter Szilágyi2016-01-042-1/+13
| |
* | core: fix transaction reorg issues within the tx poolPéter Szilágyi2016-01-052-44/+344
|/
* common: remove old RLP implementation, Value and ExtPackageFelix Lange2015-12-181-0/+14
| | | | | In order to make this happen, kill all remaining trivial uses of common/{rlp,value}.go. The non-trivial ones have been updated earlier.
* core/state, core/types use package rlp for state, receipt serialisationFelix Lange2015-12-185-71/+67
|
* eth/downloader: fix negative balance issue in testsFelix Lange2015-12-181-0/+5
| | | | | | | | | | The test chain generated by makeChainFork included invalid uncle headers, crashing the generator during the state commit. The headers were invalid because they used the iteration counter as the block number, even though makeChainFork uses a block with number > 0 as the parent. Fix this by introducing BlockGen.Number, which allows accessing the actual number of the block being generated.
* core: tx pool skip price validation for "owned" transactionszsfelfoldi2015-12-162-5/+73
|
* Merge pull request #2035 from bas-vk/rcp-v2-rebaseFelix Lange2015-12-153-0/+24
|\ | | | | rpc: new RPC implementation with pub/sub support
| * rpc: new RPC implementation with pub/sub supportBas van Kervel2015-12-143-0/+24
| |
* | core: write individual transactions and receipts too on fast syncPéter Szilágyi2015-12-041-0/+12
| |
* | core: added a new RemovedLogEventJeffrey Wilcke2015-12-014-4/+68
|/ | | | | | When a chain reorganisation occurs we collect the logs that were deleted during the chain reorganisation. The removed logs are posted to the event mux indicating that those were deleted during the reorg.
* cmd, common, core, eth, node, rpc, tests, whisper, xeth: use protocol stacksPéter Szilágyi2015-11-276-61/+84
|
* core, eth, miner, xeth: clean up tx/receipt db accessorsPéter Szilágyi2015-11-197-189/+346
|
* Merge pull request #1917 from obscuren/validator-interfaceJeffrey Wilcke2015-11-1912-599/+646
|\ | | | | core, eth, rpc: split out block validator and state processor
| * core, eth, rpc: split out block validator and state processorJeffrey Wilcke2015-11-1812-599/+646
| | | | | | | | | | | | | | | | | | | | | | | | This removes the burden on a single object to take care of all validation and state processing. Now instead the validation is done by the `core.BlockValidator` (`types.Validator`) that takes care of both header and uncle validation through the `ValidateBlock` method and state validation through the `ValidateState` method. The state processing is done by a new object `core.StateProcessor` (`types.Processor`) and accepts a new state as input and uses that to process the given block's transactions (and uncles for rewords) to calculate the state root for the next block (P_n + 1).
* | core/vm/runtime: added simple execution runtimeJeffrey Wilcke2015-11-185-0/+399
|/ | | | | | The runtime environment can be used for simple basic execution of contract code without the requirement of setting up a full stack and operates fully in memory.
* core: only reset head header/fastblock if stalePéter Szilágyi2015-10-281-11/+18
|
* core: fix #1921, decode all receipt field, not just consensusPéter Szilágyi2015-10-221-3/+2
|
* Merge pull request #1883 from obscuren/jit-vm-optimisationsJeffrey Wilcke2015-10-2210-83/+469
|\ | | | | core/vm: JIT segmentation
| * core/vm: added parsing utilitiesJeffrey Wilcke2015-10-174-3/+180
| |
| * core/vm: added JIT segmenting / optimisationsJeffrey Wilcke2015-10-178-5/+202
| | | | | | | | | | * multi-push segments * static jumps segments
| * core/vm: abstracted instruction execution away from JITJeffrey Wilcke2015-10-172-76/+88
| | | | | | | | | | | | Moved the execution of instructions to the instruction it self. This will allow for specialised instructions (e.g. segments) to be execution in the same manner as regular instructions.
* | Merge pull request #1889 from karalabe/fast-sync-rebaseJeffrey Wilcke2015-10-2220-504/+1670
|\ \ | | | | | | eth/63 fast synchronization algorithm
| * | core, eth, trie: fix data races and merge/review issuesPéter Szilágyi2015-10-219-61/+75
| | |
| * | core, eth: roll back uncertain headers in failed fast syncsPéter Szilágyi2015-10-192-3/+49
| | |
| * | eth/downloader: concurrent receipt and state processingPéter Szilágyi2015-10-198-167/+254
| | |
| * | core, eth, trie: direct state trie synchronizationPéter Szilágyi2015-10-193-4/+357
| | |
| * | core, eth: receipt chain reconstructionPéter Szilágyi2015-10-1914-87/+406
| | |
| * | core: differentiate receipt concensus and storage decodingPéter Szilágyi2015-10-197-74/+107
| | |
| * | core: fix block canonical mark / content write racePéter Szilágyi2015-10-191-20/+11
| | |
| * | eth/downloader: add fast and light sync strategiesPéter Szilágyi2015-10-192-11/+10
| | |
| * | core: support inserting pure header chainsPéter Szilágyi2015-10-195-321/+645
| |/
* | core, tests: get_hash fixJeffrey Wilcke2015-10-212-3/+5
| | | | | | | | | | Make sure that we're fetching the hash from the current chain and not the canonical chain.
* | core, core/state: move gas tracking out of core/stateFelix Lange2015-10-177-121/+75
|/ | | | | | | The amount of gas available for tx execution was tracked in the StateObject representing the coinbase account. This commit makes the gas counter a separate type in package core, which avoids unintended consequences of intertwining the counter with state logic.
* Merge pull request #1899 from obscuren/mipmap-bloomJeffrey Wilcke2015-10-178-60/+274
|\ | | | | core, eth/filters, miner, xeth: Optimised log filtering