aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* rpc: return an unsupported error when "pending" was used to create a filterBas van Kervel2015-10-302-7/+12
|
* Merge pull request #1940 from wildfjre/lightkdfflagFelix Lange2015-10-297-22/+41
|\ | | | | cmd/utils, crypto: add --lightkdf flag for lighter KDF
| * cmd/utils, crypto: add --lightkdf flag for lighter KDFDrake Burroughs2015-10-297-22/+41
|/
* Merge pull request #1937 from karalabe/make-ldflagsJeffrey Wilcke2015-10-281-10/+6
|\ | | | | makefile: fix evm ld flags, pass them to xgo too
| * makefile: dump mist leftover, add phony targetsPéter Szilágyi2015-10-281-6/+1
| |
| * makefile: fix evm ld flags, pass them to xgo tooPéter Szilágyi2015-10-281-5/+6
|/
* Merge pull request #1919 from ethersphere/getnatspecJeffrey Wilcke2015-10-2814-120/+120
|\ | | | | rpc api: eth_getNatSpec
| * rpc api: eth_getNatSpeczelig2015-10-2714-120/+120
| | | | | | | | | | | | | | | | * xeth, rpc: implement eth_getNatSpec for tx confirmations * rename silly docserver -> httpclient * eth/backend: httpclient now accessible via eth.Ethereum init-d via config.DocRoot * cmd: introduce separate CLI flag for DocRoot (defaults to homedir) * common/path: delete unused assetpath func, separate HomeDir func
* | Merge pull request #1932 from fjl/gpo-defootgunizeJeffrey Wilcke2015-10-282-73/+75
|\ \ | | | | | | eth, xeth: fix GasPriceOracle goroutine leak
| * | eth, xeth: fix GasPriceOracle goroutine leakFelix Lange2015-10-282-73/+75
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | XEth.gpo was being initialized as needed. WithState copies the XEth struct including the gpo field. If gpo was nil at the time of the copy and Call or Transact were invoked on it, an additional GPO listenLoop would be spawned. Move the lazy initialization to GasPriceOracle instead so the same GPO instance is shared among all created XEths. Fixes #1317 Might help with #1930
* | | update Dockerfile, remove supervisord and unattended-upgradescaktux2015-10-272-35/+2
| |/ |/|
* | bump VERSION to 1.3.0caktux2015-10-261-1/+1
| |
* | Merge pull request #1928 from Gustav-Simonsson/common_testsJeffrey Wilcke2015-10-2526-4809/+21810
|\ \ | | | | | | tests: update JSON files, add new wrappers
| * | tests: update JSON files, add new wrappersGustav Simonsson2015-10-2326-4809/+21810
| |/
* | Merge pull request #1924 from fjl/eth-status-timeoutJeffrey Wilcke2015-10-241-9/+27
|\ \ | | | | | | eth: time out status message exchange after 5s
| * | eth: time out status message exchange after 5sFelix Lange2015-10-231-9/+27
| |/
* | Merge pull request #1929 from ethersphere/developJeffrey Wilcke2015-10-241-1/+1
|\ \ | |/ |/| fix console history, lines with leadning whitespace NOT included
| * fix console history, lines with leadning whitespace NOT includedzelig2015-10-241-1/+1
|/
* Merge pull request #1922 from karalabe/fix-receipt-storage-regressionJeffrey Wilcke2015-10-231-3/+2
|\ | | | | core: fix #1921, decode all receipt field, not just consensus
| * core: fix #1921, decode all receipt field, not just consensusPéter Szilágyi2015-10-221-3/+2
| |
* | Merge pull request #1840 from ethersphere/consoleJeffrey Wilcke2015-10-2318-151/+347
|\ \ | |/ |/| console, cli, api fixes
| * console:zelig2015-10-2218-151/+347
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * lines with leading space are ommitted from history * exit processed even with whitespace around * all whitespace lines (not only empty ones) are ignored add 7 missing commands to admin api autocomplete registrar: methods now return proper error if reg addresses are not set. fixes #1457 rpc/console: fix personal.newAccount() regression. Now all comms accept interactive password registrar: add registrar tests for errors crypto: catch AES decryption error on presale wallet import + fix error msg format. fixes #1580 CLI: improve error message when starting a second instance of geth. fixes #1564 cli/accounts: unlock multiple accounts. fixes #1785 * make unlocking multiple accounts work with inline <() fd * passwdfile now correctly read only once * improve logs * fix CLI help text for unlocking fix regression with docRoot / admin API * docRoot/jspath passed to rpc/api ParseApis, which passes onto adminApi * docRoot field for JS console in order to pass when RPC is (re)started * improve flag desc for jspath common/docserver: catch http errors from response fix rpc/api tests common/natspec: fix end to end test (skipped because takes 8s) registrar: fix major regression: * deploy registrars on frontier * register HashsReg and UrlHint in GlobalRegistrar. * set all 3 contract addresses in code * zero out addresses first in tests
* Merge pull request #1883 from obscuren/jit-vm-optimisationsJeffrey Wilcke2015-10-2211-83/+472
|\ | | | | core/vm: JIT segmentation
| * core/vm: added parsing utilitiesJeffrey Wilcke2015-10-174-3/+180
| |
| * core/vm: added JIT segmenting / optimisationsJeffrey Wilcke2015-10-179-5/+205
| | | | | | | | | | * 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-2253-1777/+5022
|\ \ | | | | | | eth/63 fast synchronization algorithm
| * | core, eth, trie: fix data races and merge/review issuesPéter Szilágyi2015-10-2127-465/+765
| | |
| * | eth: clean out light node notions from ethPéter Szilágyi2015-10-199-106/+39
| | |
| * | core, eth: roll back uncertain headers in failed fast syncsPéter Szilágyi2015-10-196-15/+180
| | |
| * | eth/downloader: concurrent receipt and state processingPéter Szilágyi2015-10-1915-259/+516
| | |
| * | core, eth, trie: direct state trie synchronizationPéter Szilágyi2015-10-1913-463/+1626
| | |
| * | core, eth: receipt chain reconstructionPéter Szilágyi2015-10-1922-230/+613
| | |
| * | core: differentiate receipt concensus and storage decodingPéter Szilágyi2015-10-199-77/+110
| | |
| * | 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-1911-809/+1437
| | |
| * | core: support inserting pure header chainsPéter Szilágyi2015-10-199-346/+651
| | |
| * | cmd, eth: support switching client modes of operationPéter Szilágyi2015-10-198-35/+122
| |/
* | Merge pull request #1918 from obscuren/get-hash-fixJeffrey Wilcke2015-10-213-10/+10
|\ \ | | | | | | core, tests: get_hash fix
| * | core, tests: get_hash fixJeffrey Wilcke2015-10-213-10/+10
|/ / | | | | | | | | Make sure that we're fetching the hash from the current chain and not the canonical chain.
* | Merge pull request #1758 from fjl/coinbaseJeffrey Wilcke2015-10-2010-142/+92
|\ \ | |/ |/| core, core/state: move gas tracking out of core/state
| * core, core/state: move gas tracking out of core/stateFelix Lange2015-10-1710-142/+92
|/ | | | | | | 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-1714-123/+729
|\ | | | | core, eth/filters, miner, xeth: Optimised log filtering
| * core, eth/filters, miner, xeth: Optimised log filteringJeffrey Wilcke2015-10-1714-134/+647
| | | | | | | | | | | | | | 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-163-7/+100
| |
* | Merge pull request #1907 from Gustav-Simonsson/ethash_godepJeffrey Wilcke2015-10-164-2/+53
|\ \ | | | | | | godeps: update ethash following GPU miner merge
| * | godeps: update ethash following GPU miner mergeGustav Simonsson2015-10-164-2/+53
|/ /
* | Merge pull request #1869 from Gustav-Simonsson/gpu_minerJeffrey Wilcke2015-10-1642-42/+6764
|\ \ | | | | | | all: Add GPU mining, disabled by default
| * | all: Add GPU mining, disabled by defaultGustav Simonsson2015-10-0742-42/+6764
| | |
* | | Merge pull request #1881 from Gustav-Simonsson/state_new_errorJeffrey Wilcke2015-10-1623-95/+182
|\ \ \ | | | | | | | | core/state, core, miner: handle missing root error from state.New
| * | | core/state, core, miner: handle missing root error from state.NewGustav Simonsson2015-10-1623-95/+182
|/ / /
* | | Merge pull request #1853 from Gustav-Simonsson/libsecp256k1_updateJeffrey Wilcke2015-10-1689-3022/+6536
|\ \ \ | |_|/ |/| | Update libsecp256k1, Go wrapper and tests
| * | core/secp256k1: update libsecp256k1 Go wrapper and testsGustav Simonsson2015-10-093-249/+256
| | |
| * | Update libsecp256k1Gustav Simonsson2015-09-2886-2773/+6280
| | |
* | | Merge pull request #1898 from karalabe/eventmux-post-raceJeffrey Wilcke2015-10-1611-94/+123
|\ \ \ | | | | | | | | core, eth, event, miner, xeth: fix event post / subscription race
| * | | core, eth, event, miner, xeth: fix event post / subscription racePéter Szilágyi2015-10-1211-94/+123
| | | |
* | | | Merge pull request #1887 from Gustav-Simonsson/icapJeffrey Wilcke2015-10-165-0/+314
|\ \ \ \ | | | | | | | | | | common, crypto: add ICAP functions
| * | | | common, crypto: add ICAP functionsGustav Simonsson2015-10-135-0/+314
| | | | |
* | | | | Merge pull request #1896 from karalabe/fix-vm-stack-logsJeffrey Wilcke2015-10-121-3/+4
|\ \ \ \ \ | |_|/ / / |/| | | | core/vm: copy stack element to prevent overwrites
| * | | | core/vm: copy stack element to prevent overwritesPéter Szilágyi2015-10-121-3/+4
|/ / / /
* | | | Merge pull request #1888 from obscuren/testnetJeffrey Wilcke2015-10-095-1/+62
|\ \ \ \ | | | | | | | | | | cmd, core, eth: added official testnet
| * | | | cmd, core, eth: added official testnetJeffrey Wilcke2015-10-095-1/+62
| |/ / /
* | | | Merge pull request #1885 from karalabe/olympic-fixJeffrey Wilcke2015-10-093-17/+17
|\ \ \ \ | | | | | | | | | | cmd: properly initialize Olympic for all subcommands
| * | | | cmd: properly initialize Olympic for all subcommandsPéter Szilágyi2015-10-073-17/+17
| | | | |
* | | | | Merge pull request #1880 from Gustav-Simonsson/core_transferJeffrey Wilcke2015-10-096-19/+10
|\ \ \ \ \ | | | | | | | | | | | | core, core/vm, cmd/evm: remove redundant balance check
| * | | | | core, core/vm, cmd/evm: remove redundant balance checkGustav Simonsson2015-10-066-19/+10
| | |/ / / | |/| | |
* | | | | Merge pull request #1833 from Gustav-Simonsson/crypto_testsJeffrey Wilcke2015-10-092-27/+169
|\ \ \ \ \ | |_|/ / / |/| | | | crypto: correct sig validation, add missing unit tests of exported functions
| * | | | crypto: correct sig validation, add more unit testsGustav Simonsson2015-09-222-27/+169
| | | | |
* | | | | Merge pull request #1851 from bas-vk/historyfileJeffrey Wilcke2015-10-072-11/+7
|\ \ \ \ \ | | | | | | | | | | | | console/history respect datadir
| * | | | | console/history respect datadirBas van Kervel2015-09-252-11/+7
| | | | | |
* | | | | | Merge pull request #1850 from karalabe/genesis-block-receiptsJeffrey Wilcke2015-10-071-0/+3
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | core: fix #1848, block receipts db entry for the genesis too
| * | | | | core: fix #1848, block receipts db entry for the genesis tooPéter Szilágyi2015-09-251-0/+3
| |/ / / /
* | | | | Merge pull request #1879 from obscuren/versioningJeffrey Wilcke2015-10-061-2/+2
|\ \ \ \ \ | | | | | | | | | | | | cmd/geth: dev version number
| * | | | | cmd/geth: dev version numberJeffrey Wilcke2015-10-061-2/+2
| | | | | |
* | | | | | Merge pull request #1877 from obscuren/head-writeJeffrey Wilcke2015-10-062-0/+16
|\ \ \ \ \ \ | |/ / / / / |/| | | | | core: fixed head write on block insertion
| * | | | | core: fixed head write on block insertionJeffrey Wilcke2015-10-052-0/+16
|/ / / / / | | | | | | | | | | | | | | | | | | | | Due to a rebase this probably got overlooked / ignored. This fixes the issue of a block insertion never writing the last block.
* | | | | Merge pull request #1756 from obscuren/core-refactorJeffrey Wilcke2015-10-0562-1501/+1354
|\ \ \ \ \ | |_|_|_|/ |/| | | | core, core/vm: refactor
| * | | | cmd/geth, cmd/utils, core, rpc: renamed to blockchainJeffrey Wilcke2015-10-0435-302/+267
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Renamed ChainManager to BlockChain * Checkpointing is no longer required and never really properly worked when the state was corrupted.
| * | | | cmd/evm, core/vm, test: refactored VM and coreJeffrey Wilcke2015-10-0439-1062/+946
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Moved `vm.Transfer` to `core` package and changed execution to call `env.Transfer` instead of `core.Transfer` directly. * core/vm: byte code VM moved to jump table instead of switch * Moved `vm.Transfer` to `core` package and changed execution to call `env.Transfer` instead of `core.Transfer` directly. * Byte code VM now shares the same code as the JITVM * Renamed Context to Contract * Changed initialiser of state transition & unexported methods * Removed the Execution object and refactor `Call`, `CallCode` & `Create` in to their own functions instead of being methods. * Removed the hard dep on the state for the VM. The VM now depends on a Database interface returned by the environment. In the process the core now depends less on the statedb by usage of the env * Moved `Log` from package `core/state` to package `core/vm`.
| * | | | core, event/filter, xeth: refactored filter systemJeffrey Wilcke2015-10-034-158/+162
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Moved the filtering system from `event` to `eth/filters` package and removed the `core.Filter` object. The `filters.Filter` object now requires a `common.Database` rather than a `eth.Backend` and invokes the `core.GetBlockByX` directly rather than thru a "manager".
* | | | | Merge pull request #1866 from karalabe/honor-eth-capabilitiesJeffrey Wilcke2015-10-023-8/+53
|\ \ \ \ \ | |/ / / / |/| | | | eth/downloader: match capabilities when querying idle peers
| * | | | eth/downloader: match capabilities when querying idle peersPéter Szilágyi2015-10-023-8/+53
| | | | |
* | | | | Merge pull request #1865 from obscuren/deadlock-chainmanager-fixJeffrey Wilcke2015-10-021-1/+3
|\ \ \ \ \ | |/ / / / |/| | | | core: deadlock in chainmanager after posting RemovedTransactionEvent
| * | | | core: deadlock in chainmanager after posting RemovedTransactionEventJeffrey Wilcke2015-10-021-1/+3
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | This PR solves an issue with the chain manager posting a `RemovedTransactionEvent`, the tx pool will try to acquire the chainmanager lock which has previously been locked prior to posting `RemovedTransactionEvent`. This results in a deadlock in the core.
* | | | Merge pull request #1405 from fjl/lean-trieJeffrey Wilcke2015-10-0130-1059/+1515
|\ \ \ \ | | | | | | | | | | core, trie: new trie
| * | | | trie: add merkle proof functionsFelix Lange2015-09-232-0/+261
| | | | |
| * | | | core, core/state: batch-based state syncFelix Lange2015-09-2310-90/+90
| | | | |
| * | | | core, trie: new trieFelix Lange2015-09-2320-953/+1110
| | | | |
| * | | | trie: improve benchmarksFelix Lange2015-09-231-34/+72
| | | | |
* | | | | Merge pull request #1856 from karalabe/andorid-path-fixJeffrey Wilcke2015-10-013-21/+41
|\ \ \ \ \ | | | | | | | | | | | | common: fix #1818, secondary datadir paths to fall back to
| * | | | | common: fix #1818, secondary datadir paths to fall back toPéter Szilágyi2015-10-013-21/+41
| | | | | |
* | | | | | Merge pull request #1859 from fjl/fix-discover-refresh-raceJeffrey Wilcke2015-09-306-183/+199
|\ \ \ \ \ \ | | | | | | | | | | | | | | p2p/discover: fix race involving the seed node iterator
| * | | | | | p2p/discover: ignore packet version numbersFelix Lange2015-09-302-5/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The strict matching can get in the way of protocol upgrades.
| * | | | | | p2p/discover: remove unused lastLookup fieldFelix Lange2015-09-301-6/+1
| | | | | | |
| * | | | | | p2p/discover: fix race involving the seed node iteratorFelix Lange2015-09-305-172/+198
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nodeDB.querySeeds was not safe for concurrent use but could be called concurrenty on multiple goroutines in the following case: - the table was empty - a timed refresh started - a lookup was started and initiated refresh These conditions are unlikely to coincide during normal use, but are much more likely to occur all at once when the user's machine just woke from sleep. The root cause of the issue is that querySeeds reused the same leveldb iterator until it was exhausted. This commit moves the refresh scheduling logic into its own goroutine (so only one refresh is ever active) and changes querySeeds to not use a persistent iterator. The seed node selection is now more random and ignores nodes that have not been contacted in the last 5 days.
* | | | | | Merge pull request #1852 from obscuren/filter-nil-fixJeffrey Wilcke2015-09-301-12/+34
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | xeth: fixed nil pointer of filter retrieval
| * | | | | xeth: fixed nil pointer of filter retrievalJeffrey Wilcke2015-09-251-12/+34
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fix addresses an issue with filters that were (possibly) not yet added to the filter queues but were expected. I've added additional nil checks making sure it doesn't crash and swapped the installation of the filter around so it's installed before use. Closes #1665
* | | | | Merge pull request #1854 from karalabe/badhasherror-formatting-loopJeffrey Wilcke2015-09-291-1/+1
|\ \ \ \ \ | |_|/ / / |/| | | | core: fix a formatting loop in BadHashError
| * | | | core: fix a formatting loop in BadHashErrorPéter Szilágyi2015-09-291-1/+1
|/ / / /
* | | | Merge pull request #1843 from karalabe/cleanup-downloader-channelJeffrey Wilcke2015-09-251-20/+36
|\ \ \ \ | |_|/ / |/| | | eth/downloader: always send termination wakes, clean leftover
| * | | eth/downloader: always send termination wakes, clean leftoverPéter Szilágyi2015-09-231-20/+36
| | | |
* | | | Merge pull request #1803 from Gustav-Simonsson/badhashesJeffrey Wilcke2015-09-243-2/+66
|\ \ \ \ | | | | | | | | | | core: Add BadHashErr and test for BadHashes handling
| * | | | core: Add BadHashErr and test for BadHashes handlingGustav Simonsson2015-09-233-2/+66
|/ / / /
* | | | Merge pull request #1844 from obscuren/version-fileJeffrey Wilcke2015-09-231-0/+1
|\ \ \ \ | | | | | | | | | | VERSION: added version
| * | | | VERSION: added versionJeffrey Wilcke2015-09-231-0/+1
| | |/ / | |/| |
* | | | Merge pull request #1842 from fjl/rpc-fix-unknown-blockFelix Lange2015-09-233-31/+24
|\ \ \ \ | |_|/ / |/| | | rpc/api: don't crash for unknown blocks
| * | | rpc/api: don't crash for unknown blocksFelix Lange2015-09-231-25/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Most eth RPC calls that work with blocks crashed when the block was not found because they called Hash on a nil block. This is a regression introduced in cdc2662c409 (#1779). While here, remove the insane conversions in get*CountBy*. There is no need to construct a complete BlockRes and converting int->int64->*big.Int->[]byte->hexnum->string to format the length of a slice as hex.
| * | | cmd/geth, core: make "geth blocktest" work againFelix Lange2015-09-232-6/+1
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | The test genesis block was not written properly, block insertion failed immediately. While here, fix the panic when shutting down "geth blocktest" with Ctrl+C. The signal handler is now installed automatically, causing ethereum.Stop to crash because everything is already stopped.
* | | Merge pull request #1827 from Gustav-Simonsson/common_testsJeffrey Wilcke2015-09-233-1/+6807
|\ \ \ | |/ / |/| | tests: add test for StateTests/stCallCodes.json
| * | tests: add test for StateTests/stCallCodes.jsonGustav Simonsson2015-09-213-1/+6807
| |/
* | Merge pull request #1835 from karalabe/make-crossJeffrey Wilcke2015-09-221-0/+27
|\ \ | | | | | | makefile: built in cross compilation targets
| * | makefile: built in cross compilation targetsPéter Szilágyi2015-09-221-0/+27
| | |
* | | Merge pull request #1669 from obscuren/tx-pool-auto-resendJeffrey Wilcke2015-09-2213-57/+231
|\ \ \ | |/ / |/| | core, xeth: chain reorg move missing transactions to transaction pool
| * | core, core/types: readd transactions after chain re-orgJeffrey Wilcke2015-09-2213-57/+231
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added a `Difference` method to `types.Transactions` which sets the receiver to the difference of a to b (NOTE: not a **and** b). Transaction pool subscribes to RemovedTransactionEvent adding back to those potential missing from the chain. When a chain re-org occurs remove any transactions that were removed from the canonical chain during the re-org as well as the receipts that were generated in the process. Closes #1746
* | | cmd/geth: changed version number to 1.2.0Jeffrey Wilcke2015-09-211-2/+2
|/ / | | | | Changed the version number of geth to 1.2.0 so that dev builds are now properly build (instead of master). Note to self; increase version number to 1.2.1 for our next actual release.
* | Merge pull request #1822 from karalabe/contain-powJeffrey Wilcke2015-09-214-62/+327
|\ \ | |/ |/| core: separate and contain POW verifier, extensive tests
| * core: separate and contain POW verifier, extensive testsPéter Szilágyi2015-09-214-62/+327
|/
* Merge pull request #1814 from Gustav-Simonsson/common_testsJeffrey Wilcke2015-09-198-439/+13127
|\ | | | | tests: update common test wrappers and test files
| * tests: use lastblockhash field to validate reorgs and block headersGustav Simonsson2015-09-182-48/+58
| |
| * tests: update common test wrappers and test filesGustav Simonsson2015-09-187-424/+13102
| |
* | Merge pull request #1817 from obscuren/nonce-fixJeffrey Wilcke2015-09-192-2/+21
|\ \ | |/ |/| core: transaction nonce recovery
| * core: transaction nonce recovery fixJeffrey Wilcke2015-09-182-2/+21
| | | | | | | | | | | | | | | | When the transaction state recovery kicked in it assigned the last (incorrect) nonce to the pending state which caused transactions with the same nonce to occur. Added test for nonce recovery
* | Merge pull request #1815 from karalabe/chain-maker-timerFelix Lange2015-09-181-0/+11
|\ \ | | | | | | core: allow modifying test-chain block times
| * | core: allow modifying test-chain block timesPéter Szilágyi2015-09-171-0/+11
| | |
* | | Merge pull request #1793 from jeffallen/typoFelix Lange2015-09-181-18/+19
|\ \ \ | | | | | | | | common: Update README.md for the current package name
| * | | common: Update README.md for the current package nameJeff R. Allen2015-09-111-18/+19
| | | |
* | | | Merge pull request #1813 from kobigurk/developFelix Lange2015-09-181-1/+3
|\ \ \ \ | | | | | | | | | | cmd/geth: extradata is correcly initialized with console
| * | | | cmd/geth: extradata is correcly initialized with consoleKobi Gurkan2015-09-171-1/+3
| | |_|/ | |/| |
* | | | Merge pull request #1811 from bas-vk/timer-clearintervalFelix Lange2015-09-181-1/+3
|\ \ \ \ | |_|_|/ |/| | | timer bugfix when clearInterval was called from within the callback
| * | | jsre: timer bugfix when clearInterval was called from within the callbackBas van Kervel2015-09-161-1/+3
| | | |
* | | | Merge pull request #1810 from karalabe/pure-header-verifications-2Jeffrey Wilcke2015-09-174-28/+26
|\ \ \ \ | |_|/ / |/| | | core, eth, miner: use pure header validation
| * | | core, eth, miner: use pure header validationPéter Szilágyi2015-09-164-28/+26
| |/ /
* | | Merge pull request #1801 from fjl/ethdbJeffrey Wilcke2015-09-1626-125/+142
|\ \ \ | | | | | | | | all: move common.Database to ethdb and add NewBatch
| * | | ethdb: remove FlushFelix Lange2015-09-154-51/+10
| | | |
| * | | ethdb: copy stored memdb valuesFelix Lange2015-09-151-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | Storing a value in LevelDB copies the bytes, modifying the value afterwards does not affect the content of the database. This commit ensures that MemDatabase satisfies the same property.
| * | | ethdb: add NewBatchFelix Lange2015-09-153-0/+49
| | | |
| * | | all: move common.Database to package ethdbFelix Lange2015-09-1524-75/+85
| | | |
* | | | Merge pull request #1784 from karalabe/standard-sync-statsJeffrey Wilcke2015-09-168-251/+1174
|\ \ \ \ | |_|/ / |/| | | eth, rpc: standardize the chain sync progress counters
| * | | jsre, rpc/api: pull in new web3 and use hex numbersPéter Szilágyi2015-09-153-187/+612
| | | |
| * | | eth/downloader: header-chain order and ancestry checkPéter Szilágyi2015-09-153-7/+77
| | | |
| * | | eth, rpc: standardize the chain sync progress countersPéter Szilágyi2015-09-157-68/+496
| | | |
* | | | Merge pull request #1744 from kobigurk/developJeffrey Wilcke2015-09-161-1/+15
|\ \ \ \ | | | | | | | | | | adds extradata flag
| * | | | cmd/geth: adds extradata flagKobi Gurkan2015-09-161-1/+15
|/ / / /
* | | | Merge pull request #1806 from ethersphere/solc2Jeffrey Wilcke2015-09-152-14/+14
|\ \ \ \ | |/ / / |/| | | new solc api - late fixes
| * | | new solc api:zelig2015-09-152-14/+14
|/ / / | | | | | | | | | | | | | | | * use legacy version matcher * optimise just a boolean flag * skipf for messages in tests
* | | Merge pull request #1786 from ethersphere/solcFelix Lange2015-09-152-23/+49
|\ \ \ | | | | | | | | common/compiler: new solc API
| * | | Solidity Compiler - solc new APIzelig2015-09-122-23/+49
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | * adapt to new compiler versioning * use compiler version as language version * implement new solc API for versions >= 0.1.[2-9][0-9]* fixes #1770 * add optimize=1 to options * backward compatibility (for now) for <= 0.1.1, and old versions (0.[2-9][0-9]*.[0-9]+) * introduce compilerOptions to ContractInfo * clean up flair, include full version string to version line and ContractInfo
* | | Merge pull request #1797 from karalabe/ensure-ipcpath-existsFelix Lange2015-09-141-1/+6
|\ \ \ | | | | | | | | rpc/comms: fix #1795, ensure IPC path exists before binding
| * | | rpc/comms: fix #1795, ensure IPC path exists before bindingPéter Szilágyi2015-09-111-1/+6
| | | |
* | | | Merge pull request #1792 from jeffallen/uuidFelix Lange2015-09-1421-16/+237
|\ \ \ \ | |_|/ / |/| | | Change go-uuid to use the current supported repository.
| * | | Change go-uuid to use the current supported repository.Jeff R. Allen2015-09-1221-16/+237
| | |/ | |/|
* | | Merge pull request #1789 from Gustav-Simonsson/core_remove_unused_functionsJeffrey Wilcke2015-09-126-281/+0
|\ \ \ | | | | | | | | core, core/vm, core/state: remove unused functions
| * | | core, core/vm, core/state: remove unused functionsGustav Simonsson2015-09-116-281/+0
| |/ /
* | | Merge pull request #1796 from karalabe/ethash-android-supportJeffrey Wilcke2015-09-126-3/+4
|\ \ \ | | | | | | | | godeps: pull in ethash android fix
| * | | godeps: pull in ethash android fixPéter Szilágyi2015-09-116-3/+4
| | |/ | |/|
* | | Merge pull request #1779 from karalabe/split-block-storage-3000Jeffrey Wilcke2015-09-1118-381/+881
|\ \ \ | |/ / |/| | core: split the db blocks into components, move TD out top level
| * | core: split out TD from database and all internalsPéter Szilágyi2015-09-1119-294/+590
| | |
| * | core, eth: split the db blocks into headers and bodiesPéter Szilágyi2015-09-119-226/+430
|/ /
* | Merge pull request #1773 from obscuren/dev-modeFelix Lange2015-09-113-7/+42
|\ \ | | | | | | cmd/geth, cmd/utils, eth: added dev mode flag
| * | cmd/geth, cmd/utils, eth: added dev mode flagJeffrey Wilcke2015-09-093-7/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Dev mode enabled some debugging flags such as: * VM debugging mode * Simpler proof of work * Whisper enabled by default * Datadir to a tmp datadir * Maxpeers set to 0 * Gas price of 0 * Random listen port
* | | Merge pull request #1778 from fjl/rlp-trie-changesJeffrey Wilcke2015-09-116-11/+413
|\ \ \ | |_|/ |/| | rlp: precursor changes for trie, p2p
| * | rlp: move ListSize to raw.goFelix Lange2015-09-112-6/+6
| | |
| * | rlp: add RawValueFelix Lange2015-09-115-1/+39
| | |
| * | rlp: add Split functionsFelix Lange2015-09-113-1/+337
| | | | | | | | | | | | | | | These functions allow destructuring of raw rlp-encoded bytes without the overhead of reflection or copying.
| * | rlp: fix encReader returning nil buffers to the poolFelix Lange2015-09-112-4/+32
| |/ | | | | | | | | | | The bug can cause crashes if Read is called after EOF has been returned. No code performs such calls right now, but hitting the bug gets more likely as rlp.EncodeToReader gets used in more places.
* | Merge pull request #1781 from Gustav-Simonsson/state_object_copyFelix Lange2015-09-102-0/+105
|\ \ | | | | | | core/state: deleted field in StateObject Copy() and unit test
| * | core/state: test formatting adhering to Go conventionGustav Simonsson2015-09-091-17/+17
| | |
| * | core/state: deleted field in StateObject Copy() and unit testGustav Simonsson2015-09-082-0/+105
| | |
* | | Merge pull request #1780 from bas-vk/miner-crashJeffrey Wilcke2015-09-091-1/+9
|\ \ \ | |/ / |/| | agent/miner Prevent the CpuAgent to be started multiple times
| * | put unlock after lockBas van Kervel2015-09-081-5/+3
| | |
| * | agent/miner Prevent the CpuAgent to be started multiple timesBas van Kervel2015-09-081-2/+12
| |/
* | Merge pull request #1777 from hectorchu/developPéter Szilágyi2015-09-081-2/+2
|\ \ | | | | | | rpc/comms: fix bug attaching the console over http
| * | rpc/comms: fix bug attaching the console over httpHector Chu2015-09-071-2/+2
| |/
* | Merge pull request #1774 from bas-vk/console-crashPéter Szilágyi2015-09-081-1/+1
|\ \ | |/ |/| cmd/geth Autocompletion bugfix which let the console crash
| * cmd/geth Autocompletion bugfix which let the console crashBas van Kervel2015-09-061-1/+1
|/
* Merge pull request #1752 from karalabe/fix-eth61-testFelix Lange2015-09-031-1/+3
|\ | | | | eth/downloader: fix race causing occasional test failure
| * eth/downloader: fix race causing occasional test failurePéter Szilágyi2015-09-011-1/+3
| |
* | Merge pull request #1764 from kobigurk/honor_ipc_datadirPéter Szilágyi2015-09-031-1/+1
|\ \ | | | | | | honors datadir when attaching
| * | cmd/geth: honor datadir when attachingKobi Gurkan2015-09-031-1/+1
|/ /
* | Merge pull request #1761 from CJentzsch/patch-3Jeffrey Wilcke2015-09-031-1/+1
|\ \ | | | | | | fix block time issue
| * | fix block time issueChristoph Jentzsch2015-09-031-1/+1
|/ / | | | | | | | | | | | | currently, under normal circumstances, you always set the timestamp to previous.Time() + 1. credits to https://www.reddit.com/r/ethereum/comments/3jcs5r/code_avg_block_time_vs_difficulty_adjustment/cuoi4op style
* | Merge pull request #1726 from Gustav-Simonsson/update_testsFelix Lange2015-09-03750-1865/+2305
|\ \ | | | | | | Add TestBcForkUncle tests & update JSON files
| * | Add TestBcForkUncleTests and update JSON filesGustav Simonsson2015-08-31750-1865/+2305
| |/
* | Merge pull request #1755 from fjl/coinbaseGustav Simonsson2015-09-022-24/+27
|\ \ | | | | | | core: improve block gas tracking
| * | core: improve block gas trackingFelix Lange2015-09-022-24/+27
|/ /
* | Merge pull request #1751 from maran/fix_filtersFelix Lange2015-09-021-3/+3
|\ \ | | | | | | core: Filter on addresses should work as an OR not an AND.
| * | Filter on addresses should work as an OR not an AND.Maran2015-09-011-3/+3
| | |
* | | Merge pull request #1745 from mrdomino/obsd-build-masterFelix Lange2015-09-029-4/+20
|\ \ \ | |_|/ |/| | Pull in ethash and go-isatty updates
| * | Pull in ethash and go-isatty updatesSteven Dee2015-09-019-4/+20
| |/ | | | | | | Fixes build on OpenBSD.
* | Merge pull request #1742 from fjl/rpc-receipt-rootFelix Lange2015-08-311-0/+6
|\ \ | | | | | | rpc: add receiptRoot to getBlock* responses
| * | rpc: add receiptRoot to getBlock* responsesFelix Lange2015-08-291-0/+6
| | | | | | | | | | | | Fixes #1679
* | | Merge pull request #1734 from fjl/ldflags-warning-go1.5Felix Lange2015-08-311-1/+6
|\ \ \ | |_|/ |/| | build: avoid -X separator warning with Go >= 1.5
| * | build: avoid -X separator warning with Go >= 1.5Felix Lange2015-08-271-1/+6
| |/
* | Merge pull request #1724 from Gustav-Simonsson/get_workFelix Lange2015-08-294-4/+27
|\ \ | | | | | | rpc: return error code for eth_getWork when no work ready
| * | Improve error string and remove unneeded else clauseGustav Simonsson2015-08-283-7/+6
| | |
| * | rpc: return error code for eth_getWork when no work readyGustav Simonsson2015-08-264-4/+28
| | |
* | | Merge pull request #1739 from bas-vk/empty-passwordFelix Lange2015-08-282-4/+4
|\ \ \ | |_|/ |/| | rpc/api allow empty password
| * | rpc/api allow empty passwordBas van Kervel2015-08-282-4/+4
|/ /
* | Merge pull request #1701 from karalabe/eth62-sync-rebaseFelix Lange2015-08-2723-1274/+3347
|\ \ | | | | | | eth: implement eth/62 synchronization logic
| * | eth: update metrics collection to handle eth/62 algosPéter Szilágyi2015-08-257-36/+160
| | |
| * | eth: port the synchronisation algo to eth/62Péter Szilágyi2015-08-2510-341/+2010
| | |
| * | eth: kill off protocol eth/60 in preparation for eth/62Péter Szilágyi2015-08-246-804/+28
| | |
| * | eth, eth/downloader: handle header requests, table driven proto testsPéter Szilágyi2015-08-2414-254/+1209
| | |
| * | eth, metrics, p2p: prepare metrics and net packets to eth/62Péter Szilágyi2015-08-217-48/+149
| | |
* | | Merge pull request #1717 from karalabe/forward-solidity-errorsFelix Lange2015-08-271-58/+46
|\ \ \ | | | | | | | | common/compiler: fix #1598, expose solidity errors
| * | | common/compiler: fix #1598, expose solidity errorsPéter Szilágyi2015-08-261-58/+46
| | |/ | |/|
* | | Merge pull request #1718 from caktux/developFelix Lange2015-08-271-0/+1
|\ \ \ | | | | | | | | add missing shh_getMessages to RPC mappings
| * | | add missing shh_getMessages to RPC mappingscaktux2015-08-261-0/+1
| |/ /
* | | Merge pull request #1721 from bas-vk/console-error-parsingFelix Lange2015-08-272-8/+7
|\ \ \ | | | | | | | | Improved console error handling
| * | | bugfix console error handlingBas van Kervel2015-08-262-8/+7
| |/ /
* | | Merge pull request #1722 from bas-vk/remote-deleteaccountFelix Lange2015-08-273-47/+0
|\ \ \ | |/ / |/| | Remove personal.deleteAccount from RPC interface
| * | rpc/api - remove personal.deleteAccount from RPC interfaceBas van Kervel2015-08-263-47/+0
|/ /
* | Merge pull request #1711 from Gustav-Simonsson/timestamp_big_intFelix Lange2015-08-2521-43/+380
|\ \ | | | | | | Add tests for uncle timestamps and refactor timestamp type
| * | Add tests for uncle timestamps and refactor timestamp typeGustav Simonsson2015-08-2521-43/+380
| |/
* | Merge pull request #1710 from bas-vk/useragentFelix Lange2015-08-254-20/+48
|\ \ | |/ |/| user agent messages were dumped in some cases
| * Set ipc channel as user agent clientBas van Kervel2015-08-244-20/+48
|/
* cmd/geth: bumped version 1.1.0Jeffrey Wilcke2015-08-211-3/+3
|
* remove 0xJeffrey Wilcke2015-08-211-1/+1
|
* canary updateJeffrey Wilcke2015-08-211-4/+4
|
* core, tests: Double SUICIDE fixJeffrey Wilcke2015-08-215-165/+785
|
* cmd/geth: bumped version 1.0.3Jeffrey Wilcke2015-08-201-2/+2
|
* geth: bumped version 1.0.2Jeffrey Wilcke2015-08-201-2/+2
|
* Merge pull request #1694 from obscuren/hide-fdtrackJeffrey Wilcke2015-08-2015-314/+7
|\ | | | | fdtrack: hide message
| * Revert "fdtrack: temporary hack for tracking file descriptor usage"Jeffrey Wilcke2015-08-2015-314/+7
| | | | | | | | This reverts commit 5c949d3b3ba81ea0563575b19a7b148aeac4bf61.
* | Merge pull request #1652 from bas-vk/autoreconnectJeffrey Wilcke2015-08-201-3/+5
|\ \ | | | | | | rpc/comms: reconnect ipc client after write error
| * | rpc/comms reconnect ipc client after write errorBas van Kervel2015-08-201-3/+5
| |/
* | Merge pull request #1689 from fjl/discover-ignore-temp-errorsJeffrey Wilcke2015-08-204-11/+51
|\ \ | |/ |/| p2p, p2p/discover: small fixes
| * p2p/discover: don't attempt to replace nodes that are being replacedFelix Lange2015-08-192-4/+15
| | | | | | | | | | | | | | | | PR #1621 changed Table locking so the mutex is not held while a contested node is being pinged. If multiple nodes ping the local node during this time window, multiple ping packets will be sent to the contested node. The changes in this commit prevent multiple packets by tracking whether the node is being replaced.
| * p2p: continue listening after temporary errorsFelix Lange2015-08-191-6/+25
| |
| * p2p/discover: continue reading after temporary errorsFelix Lange2015-08-191-1/+11
| | | | | | | | Might solve #1579
* | Merge pull request #1688 from karalabe/fix-double-importsJeffrey Wilcke2015-08-191-2/+4
|\ \ | | | | | | eth: fix an issue with pulling and inserting blocks twice
| * | eth: fix an issue with pulling and inserting blocks twicePéter Szilágyi2015-08-191-2/+4
| |/
* | Merge pull request #1680 from maran/fix_removedbJeffrey Wilcke2015-08-191-4/+3
|\ \ | |/ |/| cmd/geth: Fix chain purging from cmd line
| * cmd/geth: Fix chain purging from cmd lineMaran2015-08-181-4/+3
| |
* | Merge pull request #1454 from ethersphere/frozen-cryptocleanJeffrey Wilcke2015-08-194-1878/+0
|\ \ | | | | | | crypto: remove obsolete code
| * | crypto: remove obsolete key fileszelig2015-08-184-1878/+0
| |/
* | Merge pull request #1683 from ethereum/travisJeffrey Wilcke2015-08-192-24/+13
|\ \ | | | | | | Switch from Coveralls to Codecov code coverage service
| * | Codecov integrationTaylor Gerring2015-08-192-24/+13
| | |
* | | Merge pull request #1682 from obscuren/readme-improvementsJeffrey Wilcke2015-08-192-25/+29
|\ \ \ | |/ / |/| | Updated README, Added CONTRIBUTING
| * | Updated README, Added CONTRIBUTINGJeffrey Wilcke2015-08-192-25/+29
| | |
* | | Merge pull request #1681 from obscuren/miner-receipt-fixJeffrey Wilcke2015-08-194-9/+14
|\ \ \ | |_|/ |/| | core, miner: write miner receipts
| * | core, miner: write miner receiptsJeffrey Wilcke2015-08-194-9/+14
| |/
* | Merge pull request #1675 from obscuren/submithashrate-changeJeffrey Wilcke2015-08-181-2/+2
|\ \ | | | | | | rpc/api: return boolean value for eth_submitHashrate
| * | rpc/api: return boolean value for eth_submitHashrateJeffrey Wilcke2015-08-171-2/+2
| | |
* | | Merge pull request #1673 from karalabe/fix-api-xeth-responsesJeffrey Wilcke2015-08-181-5/+13
|\ \ \ | |_|/ |/| | rpc: update the xeth over RPC API to use the success/failure messages
| * | rpc: update the xeth over RPC API to use the success/failure messagesPéter Szilágyi2015-08-171-5/+13
| | |
* | | Merge pull request #1627 from zsfelfoldi/gpoJeffrey Wilcke2015-08-171-10/+13
|\ \ \ | | | | | | | | GPO update
| * | | GPO updatezsfelfoldi2015-08-171-10/+13
| | | |
* | | | Merge pull request #1649 from maran/pending_tx_responseJeffrey Wilcke2015-08-171-8/+8
|\ \ \ \ | | | | | | | | | | rpc/api: format pendingTx response. Fixes #1648
| * | | | rpc/api: format pendingTx response. Fixes #1648Maran2015-08-161-8/+8
| | | | |