/audio/crip/

>
aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* added eth.pendingTransactionsBas van Kervel2015-06-304-6/+79
|
* Merge branch 'hotfix/0.9.34-1' into developJeffrey Wilcke2015-06-302-16/+19
|\
| * core, miner: added queued write to WriteBlockJeffrey Wilcke2015-06-302-16/+19
| | | | | | | | | | | | | | | | This fixes an issue with the lru cache not being available when calling WriteBlock. WriteBlock previously always assumed to be called from the InsertChain where the lru cache was always created prior to calling WriteBlock. When being called from the worker this could lead in to a nil pointer exception being thrown and causing database corruption.
| * Merge branch 'release/0.9.34'Jeffrey Wilcke2015-06-30446-332051/+16510
| |\
| * \ Merge branch 'release/0.9.32'Jeffrey Wilcke2015-06-24264-36992/+6993
| |\ \
| * \ \ Merge branch 'release/0.9.30'obscuren2015-06-1691-1112/+9448
| |\ \ \
| * \ \ \ Merge branch 'release/0.9.28'obscuren2015-06-10110-6415/+28917
| |\ \ \ \
* | | | | | cmd/geth: version bump 0.9.35Jeffrey Wilcke2015-06-301-1/+1
| | | | | |
* | | | | | Merge branch 'release/0.9.34' into developJeffrey Wilcke2015-06-301-1/+1
|\ \ \ \ \ \ | | |_|_|_|/ | |/| | | |
| * | | | | cmd/geth: version bump 0.9.34Jeffrey Wilcke2015-06-301-1/+1
|/ / / / /
* | | | | Merge pull request #1360 from obscuren/peter-metricsJeffrey Wilcke2015-06-3013-83/+326
|\ \ \ \ \ | | | | | | | | | | | | Rebased peter's PR
| * | | | | cmd/geth: decent error message if metrics are disabledPéter Szilágyi2015-06-302-2/+1
| | | | | |
| * | | | | cmd, core, eth, metrics, p2p: require enabling metricsPéter Szilágyi2015-06-309-55/+111
| | | | | |
| * | | | | cmd/geth, eth, ethdb: monitor database compactionsPéter Szilágyi2015-06-303-29/+109
| | | | | |
| * | | | | cmd/geth, metrics: separate process metric collection, add diskPéter Szilágyi2015-06-305-22/+130
|/ / / / /
* | | | | Merge pull request #1357 from obscuren/core-optimisations-2Jeffrey Wilcke2015-06-3041-1404/+2277
|\ \ \ \ \ | | | | | | | | | | | | core: optimisations
| * | | | | core: replaced BlockCache with lru.CacheJeffrey Wilcke2015-06-302-20/+25
| | | | | |
| * | | | | Merge branch 'miner-broadcast' into core-optimisations-2Jeffrey Wilcke2015-06-303-66/+129
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: core/chain_manager.go miner/worker.go
| | * | | | | core, miner: implemented canaryJeffrey Wilcke2015-06-292-0/+34
| | | | | | |
| | * | | | | core, miner: added write block method & changed mining propagationJeffrey Wilcke2015-06-292-73/+95
| | | | | | |
| | * | | | | miner: broadcast block before insertion/validationJeffrey Wilcke2015-06-291-1/+6
| | | | | | |
| | * | | | | Merge pull request #1353 from karalabe/fix-double-fetchJeffrey Wilcke2015-06-291-5/+17
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | eth/fetcher: don't double filter/fetch the same block
| * | | | | | | gpo non-existent block checkszsfelfoldi2015-06-301-4/+11
| | | | | | | |
| * | | | | | | miner: update root only when miningJeffrey Wilcke2015-06-301-4/+6
| | | | | | | |
| * | | | | | | core: fixed testsJeffrey Wilcke2015-06-303-2/+2
| | | | | | | |
| * | | | | | | core: removed write's go routineJeffrey Wilcke2015-06-302-8/+3
| | | | | | | |
| * | | | | | | core: renamed next to pending & fixed testsobscuren2015-06-302-17/+14
| | | | | | | |
| * | | | | | | core: reduced cache limit to 256obscuren2015-06-301-1/+1
| | | | | | | |
| * | | | | | | deps: Added golang-lruobscuren2015-06-306-1/+718
| | | | | | | |
| * | | | | | | core: switched to proper LRUobscuren2015-06-301-9/+6
| | | | | | | |
| * | | | | | | core: added LRU caching and added batch writing when LDB is usedobscuren2015-06-301-21/+81
| | | | | | | |
| * | | | | | | ethdb: accessor for LDB. TODO remove this interfaceobscuren2015-06-301-0/+4
| | | | | | | |
| * | | | | | | trie: Implemented a batch write approach for flushingobscuren2015-06-301-8/+18
| | | | | | | |
| * | | | | | | core, eth, rpc: avoid unnecessary block header copyingFelix Lange2015-06-306-40/+44
| | | | | | | |
| * | | | | | | core: remove superfluous big.Int allocationsFelix Lange2015-06-303-61/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With blocks now being immutable, use big.Int values from accessor functions instead of copying their results.
| * | | | | | | core: generate benchmark keys only onceFelix Lange2015-06-301-9/+23
| | | | | | | |
| * | | | | | | core: avoid duplicate calls to Transaction.DataFelix Lange2015-06-301-3/+3
| | | | | | | |
| * | | | | | | core: optimize IntrinsicGasFelix Lange2015-06-301-5/+12
| | | | | | | |
| * | | | | | | core/types: cache computed block valuesFelix Lange2015-06-301-3/+22
| | | | | | | |
| * | | | | | | core/types: cache computed transaction valuesFelix Lange2015-06-301-5/+28
| | | | | | | |
| * | | | | | | rlp: add ListSizeFelix Lange2015-06-301-0/+6
| | | | | | | |
| * | | | | | | rlp: remove FlatFelix Lange2015-06-302-51/+0
| | | | | | | |
| * | | | | | | rlp: pool encoder allocationsFelix Lange2015-06-301-9/+27
| | | | | | | |
| * | | | | | | core: add InsertChain benchmarksFelix Lange2015-06-301-0/+149
| | | | | | | |
| * | | | | | | rpc: unmask pending block fieldsFelix Lange2015-06-301-8/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This pleases the RPC tests.
| * | | | | | | eth/downloader, eth/fetcher: use core.GenerateChain in testsFelix Lange2015-06-302-236/+140
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | TestMadeupParentBlockChainAttack has been deleted because it was too hard to port and the attack that it checks the prevention of is being averted in a different way (through a protocol change).
| * | | | | | | core: add GenerateChain, GenesisBlockForTestingFelix Lange2015-06-305-80/+230
| | | | | | | |
| * | | | | | | core/types: make blocks immutableFelix Lange2015-06-3017-576/+446
| | | | | | | |
| * | | | | | | core/types: make transactions immutableFelix Lange2015-06-308-275/+215
|/ / / / / / /
* | | | | | | Merge pull request #1356 from Gustav-Simonsson/debug_developJeffrey Wilcke2015-06-307-54/+188
|\ \ \ \ \ \ \ | | |/ / / / / | |/| | | | | Debug develop
| * | | | | | eth/fetcher: don't drop on future blocks, just not propagatePéter Szilágyi2015-06-291-4/+16
| | | | | | |
| * | | | | | eth/fetcher: don't double filter/fetch the same blockPéter Szilágyi2015-06-291-1/+1
| |/ / / / /
| * | | | | Merge pull request #1341 from karalabe/proto-version-negotiationFelix Lange2015-06-283-6/+110
| |\ \ \ \ \ | | | | | | | | | | | | | | p2p: support protocol version negotiation
| | * | | | | p2p: fix local/remote cap/protocol mixupPéter Szilágyi2015-06-271-23/+23
| | | | | | |
| | * | | | | p2p: support protocol version negotiationPéter Szilágyi2015-06-263-6/+110
| |/ / / / / |/| | | | |
| * | | | | Merge pull request #1335 from tgerring/mistcleanupJeffrey Wilcke2015-06-272-10/+6
| |\ \ \ \ \ | | | | | | | | | | | | | | Travis and README cleanup
| | * | | | | Travis and README cleanupTaylor Gerring2015-06-252-10/+6
| | | | | | |
| * | | | | | Merge pull request #1344 from karalabe/monitor-fixesJeffrey Wilcke2015-06-271-33/+55
|/| | | | | | | | | | | | | | | | | | | | Monitor fixes
| * | | | | | cmd/geth: fix monitor panic, don't pre-fill with dummy dataPéter Szilágyi2015-06-271-10/+18
| | | | | | |
| * | | | | | cmd/geth: re-scale charts when changing unit magnitudesPéter Szilágyi2015-06-271-24/+38
|/ / / / / /
* | | | | | Merge pull request #1321 from karalabe/cut-it-open-3000Jeffrey Wilcke2015-06-25