aboutsummaryrefslogtreecommitdiffstats
path: root/eth/filters/filter_test.go
Commit message (Collapse)AuthorAgeFilesLines
* core/rawdb: separate raw database access to own package (#16666)Péter Szilágyi2018-05-071-20/+9
|
* all: switch gas limits from big.Int to uint64Péter Szilágyi2018-01-031-5/+5
|
* accounts, consensus, core, eth: make chain maker consensus agnostic (#15497)gary rong2017-12-221-2/+3
| | | | | | | | | | * 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
* core, eth: clean up bloom filtering, add some testsPéter Szilágyi2017-09-061-10/+8
|
* core, eth: add bloombit indexer, filter based on itZsolt Felfoldi2017-09-061-55/+15
|
* core: implement Metropolis EIP 658, receipt status byterjl4934564422017-08-221-5/+5
|
* core, light: send chain events using event.Feed (#14865)Miya Chen2017-08-181-13/+21
|
* core: remove redundant storage of transactions and receipts (#14801)Péter Szilágyi2017-07-151-12/+0
| | | | | | | | | | | | | | * core: remove redundant storage of transactions and receipts * core, eth, internal: new transaction schema usage polishes * eth: implement upgrade mechanism for db deduplication * core, eth: drop old sequential key db upgrader * eth: close last iterator on successful db upgrage * core: prefix the lookup entries to make their purpose clearer
* core: refactor genesis handlingFelix Lange2017-03-231-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | 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: import "context" instead of "golang.org/x/net/context"Felix Lange2017-03-231-2/+1
| | | | | | | | | | There is no need to depend on the old context package now that the minimum Go version is 1.7. The move to "context" eliminates our weird vendoring setup. Some vendored code still uses golang.org/x/net/context and it is now vendored in the normal way. This change triggered new vet checks around context.WithTimeout which didn't fire with golang.org/x/net/context.
* all: gofmt -w -sFelix Lange2017-01-061-6/+6
|
* core/vm: move Log to core/typesFelix Lange2017-01-061-12/+11
| | | | | | | | 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.
* eth/filter: add support for pending logs (#3219)bas-vk2016-11-281-0/+3
|
* core, core/state, trie: EIP158, reprice & skip empty account writeJeffrey Wilcke2016-11-131-2/+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>
* cmd, eth: added light client and light server modeszsfelfoldi2016-11-091-16/+20
|
* accounts, core, eth: pass chain config for chain maker to test DAOPéter Szilágyi2016-07-151-2/+2
|
* core: improved chainDb using sequential keyszsfelfoldi2016-06-071-2/+2
|
* all: fix go vet warningsFelix Lange2016-04-151-2/+2
|
* all: update license informationFelix Lange2016-04-151-0/+16
|
* cmd, eth, ethdb, node: prioritise chaindata for resources, bump cachePéter Szilágyi2016-03-091-2/+2
|
* core, eth, miner, xeth: clean up tx/receipt db accessorsPéter Szilágyi2015-11-191-4/+4
|
* core, eth, trie: fix data races and merge/review issuesPéter Szilágyi2015-10-211-17/+16
|
* core, eth/filters, miner, xeth: Optimised log filteringJeffrey Wilcke2015-10-171-15/+187
| | | | | | | Log filtering is now using a MIPmap like approach where addresses of logs are added to a mapped bloom bin. The current levels for the MIP are in ranges of 1.000.000, 500.000, 100.000, 50.000, 1.000. Logs are therefor filtered in batches of 1.000.
* eth/filters: added benchmarkJeffrey Wilcke2015-10-161-0/+95