aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #3116 from fjl/release/1.4v1.4.17Felix Lange2016-10-1015-563/+1158
|\ | | | | Backport TxPool limits to release/1.4
| * [release/1.4.17] cmd/geth, VERSION: bump version to 1.4.17Felix Lange2016-10-102-2/+2
| |
| * [release/1.4.17] core: lower transaction pool max queue limitFelix Lange2016-10-101-1/+1
| | | | | | | | (cherry picked from commit 16d8397e30ea0e4d07a07f5c4416b8888daf9796)
| * [release/1.4.17] core: abstract out a sorted transaction hash mapPéter Szilágyi2016-10-104-222/+229
| | | | | | | | (cherry picked from commit b4a52513915d5a39ac055fc38cafed70098eb698)
| * [release/1.4.17] core: add upper bound on the queued transctionsPéter Szilágyi2016-10-103-33/+203
| | | | | | | | (cherry picked from commit a183ea29f9313cb1d00ed8f73bfbc4ae51e9cb04)
| * [release/1.4.17] core/types, miner: switch over to the grouped tx setsPéter Szilágyi2016-10-103-119/+98
| | | | | | | | (cherry picked from commit affffb39b366321e47784e48c469da9584ceb92c)
| * [release/1.4.17] core, eth, internal, miner: optimize txpool for quick opsPéter Szilágyi2016-10-1013-450/+810
| | | | | | | | (cherry picked from commit 0ef327bbee79c01a69ba59258acc6ce3a48bc288)
| * [release/1.4.17] core, eth, miner: only retain 1 tx/nonce, remove bad onesPéter Szilágyi2016-10-104-189/+268
|/ | | | (cherry picked from commit 795b70423eac7180ab85b735f64aae9d6a10449d)
* [release/1.4.16] cmd/geth, VERSION: bumped version to 1.4.16v1.4.16Felix Lange2016-10-062-2/+2
|
* [release/1.4.16] core/state: optimize GetStateFelix Lange2016-10-061-5/+7
| | | | | | There is no need to use the reflection-based decoder to decode []byte. (cherry picked from commit 3c836dd71b192de24774b1848173a4eb0ca9a63b)
* [release/1.4.16] core/state: rename Delete/IsDeleted to Suicide/HasSuicidedFelix Lange2016-10-069-32/+35
| | | | | | The delete/remove naming has caused endless confusion in the past. (cherry picked from commit 90fce8bfa621f8c3be6663d62740783949111ff1)
* [release/1.4.16] core/state: implement reverts by journaling all changesFelix Lange2016-10-0622-239/+658
| | | | | | | | | | | | 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! (cherry picked from commit 1f1ea18b5414bea22332bb4fce53cc95b5c6a07d)
* [release/1.4.16] tests: update test files from github.com/ethereum/tests @ ↵Felix Lange2016-10-06746-65642/+188445
| | | | | | | | | | 45bc1d21d3c1 Two new tests are skipped because they're buggy. Making some newer random state tests work required implementing the 'compressed return value encoding'. (cherry picked from commit 1b7b2ba2163c7b2b2acc0c4f107951ad873cd8a4)
* [release/1.4.16] cmd/utils: disable jitvm A/B testFelix Lange2016-10-061-12/+0
|
* [release/1.4.16] eth: monitor malicious header retrieval requestsPéter Szilágyi2016-10-062-5/+31
| | | | (cherry picked from commit e482b5694faece927a29289f88d7a87b1ce1fbd1)
* [release/1.4.16] internal/build: fix git tag env variable for AppVeyorFelix Lange2016-10-061-1/+1
| | | | (cherry picked from commit 82e09c17a9e112cf8fe59ec526fc90a228ad3c0b)
* [release/1.4.16] crypto/sha3: update from golang.org/x/crypto/sha3 a 80b25ed4Felix Lange2016-10-066-3/+410
| | | | | | This pulls in the assembly implementation of keccakf1600 for amd64. (cherry picked from commit 54ea317375273c8bb558194eb04c73925da9ac14)
* Merge pull request #3074 from karalabe/release/1.4Péter Szilágyi2016-10-0329-227/+467
|\ | | | | Geth 1.4.15 "Come at me bro"
| * [release/1.4.15] VERSION, cmd/geth: bumped version 1.4.15Péter Szilágyi2016-10-032-6/+6
| |
| * [release/1.4.15] internal/build: use less edgy command to get the branch nameFelix Lange2016-10-031-1/+3
| | | | | | | | (cherry picked from commit b4b5921dd030568717d33b03739d65c3aeb9d9af)
| * [release/1.4.15] build: improve debian packagingFelix Lange2016-10-039-132/+250
| | | | | | | | | | | | | | | | | | | | | | | | This commit tweaks the debian packaging tool: * All build environment metadata can now be overriden on the command line. This allows testing the CI build behaviour locally. * -unstable packages now actually contain the binaries (oops) * packages use Go 1.7 to build * archiving is skipped for PR builds (cherry picked from commit 4f7627972e4997965be6f3c406904ef613e14c20)
| * [release/1.4.15] core/state: track dirty state entries for each objectPéter Szilágyi2016-10-032-18/+24
| | | | | | | | (cherry picked from commit b7159818f9eb102ac842199fd5af0efca7bdd6b0)
| * [release/1.4.15] cmd, core, internal, light, tests: avoid hashing the code ↵Péter Szilágyi2016-10-0316-36/+58
| | | | | | | | | | | | in the VM (cherry picked from commit cb84e3f02953f2df166ae69369d222dcbbd7d78d)
| * [release/1.4.15] trie: fix delete bug for values contained in fullNodeFelix Lange2016-10-032-35/+127
| | | | | | | | | | | | | | | | | | | | | | Delete crashed if a fullNode contained a valueNode directly. This bug is very unlikely to occur with SecureTrie, but can happen with regular tries. This commit also introduces a randomised test which triggers all trie operations, which should prevent such bugs in the future. Credit for finding this bug goes to Github user @rjl493456442. (cherry picked from commit c3a77d626831b4ffe37ed4f8640e67e70ad5b220)
* | Merge pull request #3055 from karalabe/release/1.4v1.4.14Péter Szilágyi2016-09-2825-691/+592
|\| | | | | Geth 1.4.14: What else should we rewrite?
| * [release/1.4.14] VERSION, cmd/geth: bumped version 1.4.14Péter Szilágyi2016-09-282-6/+6
| |
| * [release/1.4.14] core, eth, trie: reuse trie journals in all our codePéter Szilágyi2016-09-287-24/+148
| | | | | | | | (cherry picked from commit 710435b51b97b4c688b70bda35ab9d1aa704a988)
| * [release/1.4.14] core, trie: replace state caches with trie journalFelix Lange2016-09-2815-654/+419
| | | | | | | | (cherry picked from commit cd791bd855b55b95afc8a5c8f56b8bf67863d099)
| * [release/1.4.14] build: limit test concurrencyFelix Lange2016-09-281-0/+3
| | | | | | | | | | | | | | | | TravisCI and AppVeyor run the tests in very slow VMs. Some of our tests can't cope with that. Running less tests in parallel should make them somewhat less flakey. (cherry picked from commit b0a6b979a3f12e91cfbc89850bfaa00c46653e85)
| * [release/1.4.14] cmd/utils: don't check for stderr redirect on windowsFelix Lange2016-09-281-4/+11
| | | | | | | | | | | | | | | | | | | | The redirect check did not work on Go 1.6 and below because Stat returned an error for stdout and stderr. In Go 1.7 Stat works on stdout but doesn't return anything meaningful, causing cmd/geth test failures because the message is printed to stderr only. Fix it by printing to stdout only. (cherry picked from commit b04219fdbbef06527f77e93129d6a196b6841f44)
| * [release/1.4.14] appveyor.yml: don't install Go and MinGW, they're already ↵Felix Lange2016-09-281-11/+13
|/ | | | | | there (#2813) (cherry picked from commit e11489eb5f58a63cb39a3189de7263837dc95b93)
* Merge pull request #3038 from fjl/release/1.4Péter Szilágyi2016-09-2616-339/+433
|\ | | | | [release/1.4.13] core/state: track all accounts in canon state
| * [release/1.4.13] node: fix go vet issueFelix Lange2016-09-261-4/+24
| |
| * [release/1.4.13] core/state: track all accounts in canon stateFelix Lange2016-09-2615-335/+409
|/ | | | | | | This change introduces a global, per-state cache that keeps account data in the canon state. Thanks to @karalabe for lots of fixes. (cherry picked from commit a59a93f476434f2805c8fd3e10bf1b2f579b078f)
* Merge pull request #3036 from karalabe/release/1.4Péter Szilágyi2016-09-263-2/+8
|\ | | | | Geth 1.4.13
| * [release 1.4.12] VERSION, cmd/geth: bumped version 1.4.13Péter Szilágyi2016-09-262-2/+2
| |
| * [release 1.4.12] core: short-circuit balance change if zero valueGustav Simonsson2016-09-261-0/+6
| | | | | | | | (cherry picked from commit 25ed5feddadea8201974bfacb2a57d060b697acb)
* | Merge pull request #3008 from karalabe/release/1.4Péter Szilágyi2016-09-195-7/+10
|\| | | | | G
| * [release/1.4.12] VERSION, cmd/geth: bumped version 1.4.12Péter Szilágyi2016-09-192-2/+2
| |
| * [release 1.4.12] core/state: Fix memory expansion bug by not copying clean ↵Nick Johnson2016-09-193-5/+8
|/ | | | | | objects (cherry picked from commit 581b320b9dfb42c0c4842e0bc5aeb507267a8eba)
* Merge pull request #2915 from obscuren/release/1.4Jeffrey Wilcke2016-08-1853-1810/+1364
|\ | | | | Geth 1.4.11
| * [release/1.4.11] VERSION, cmd/geth: bumped version 1.4.11Jeffrey Wilcke2016-08-182-2/+2
| |
| * [release/1.4.11] core: ensure the canonical block is written before the ↵Bas van Kervel2016-08-185-22/+70
| | | | | | | | | | | | | | | | | | | | | | | | canonical hash is set (cherry picked from commit bb8059f6aa86d1052d7c2dd75a6985982cb278f4) Conflicts: core/blockchain.go core/database_util.go core/headerchain.go eth/filters/filter.go
| * [release/1.4.11] Godeps: pull in ethash with the big endian build fixPéter Szilágyi2016-08-184-18/+17
| | | | | | | | (cherry picked from commit f0134f363bf62ba18668c2524050f14b2a43b6bd)
| * [release/1.4.11] Makefile: support building for the MIPS64 platforms (#2682)Péter Szilágyi2016-08-181-2/+12
| | | | | | | | (cherry picked from commit 4c2cc32f2e279baa3059603b8c8a4329f31606f6)
| * [release/1.4.11] eth/downloader: fewer headers and futures too un ancestor ↵Péter Szilágyi2016-08-181-9/+17
| | | | | | | | | | | | lookup (cherry picked from commit d68865f3b1b93e2463f7e3381e39fbbd137df825)
| * [release/1.4.11] eth/downloader: abort sync if master drops (timeout prev)Péter Szilágyi2016-08-181-2/+15
| | | | | | | | (cherry picked from commit 8f0a4a25f82f48005e6252a90c008bdc76219cc3)
| * [release/1.4.11] eth, eth/downloader: don't forward the DAO challenge headerPéter Szilágyi2016-08-182-1/+2
| | | | | | | | (cherry picked from commit 071af57bcf516d92a0b56c5bb119d9576d32b5cb)
| * [release/1.4.11] eth, eth/downloader: better remote head trackingPéter Szilágyi2016-08-186-51/+62
| | | | | | | | | | | | | | | | (cherry picked from commit 1dd272080dfb49a07a87c46e18d8aeaa0fd41a08) Conflicts: eth/handler.go eth/sync.go
| * [release/1.4.11] eth, eth/downloader, eth/fetcher: delete eth/61 codeFelix Lange2016-08-1815-1524/+119
| | | | | | | | | | | | | | | | | | | | | | The eth/61 protocol was disabled in #2776, this commit removes its message handlers and hash-chain sync logic. (cherry picked from commit 016007bd25f2b5e597c2ac2f7256c4e73574f70e) Conflicts: eth/handler.go eth/handler_test.go
| * [release/1.4.11] Makefile, build: move cross compilation into ci.goPéter Szilágyi2016-08-183-50/+57
| | | | | | | | (cherry picked from commit 8c23f20c68b59c5534ab249d23b452114ba75f74)
| * [release/1.4.11] build: add ci.go, use it everywhereFelix Lange2016-08-1819-114/+938
| | | | | | | | | | | | | | | | The new build script, ci.go, replaces some of the older shell scripts. ci.go can compile go-ethereum, run the tests, create release archives and debian source packages. (cherry picked from commit 6c33ba14a4db99409657e6a68a7c629e09ceee3f)
| * [release/1.4.11] core/vm: hide ecrecover error messageFelix Lange2016-08-181-2/+2
| | | | | | | | | | | | Fixes #2825 (cherry picked from commit e4736fe46938008b7fa88879f728fa81c6ce09e8)
| * [release/1.4.11] Godeps: update github.com/rjeczalik/notify to f627deca7a51Felix Lange2016-08-184-5/+3
| | | | | | | | | | | | Fixes #2829 (cherry picked from commit 4be37222efb2064140bd3d285ef553ec077e0487)
| * [release/1.4.11] eth/downloader: fix the stall checks/drops during syncPéter Szilágyi2016-08-181-1/+8
| | | | | | | | (cherry picked from commit c7c82f1b44e07ad0906dde563cce46ea87b6fc83)
| * [release/1.4.11] eth: cancel DAO challenge on peer drop (annoying log)Péter Szilágyi2016-08-181-0/+7
| | | | | | | | (cherry picked from commit 91f18ffd47d766b1493016da6802befbf9739709)
| * [release/1.4.11] eth: fix #2710 filter racesHenning Diedrich2016-08-182-28/+54
|/ | | | | | and locking bugs found in its wake. (cherry picked from commit 51f8ce26cf6dbc20ddc548af305739db981fdd41)
* VERSION, cmd/geth: bumped version 1.4.10Péter Szilágyi2016-07-162-2/+2
|
* [release/1.4.10] cmd/utils, eth: display the user's current fork, minor text ↵Péter Szilágyi2016-07-162-1/+20
| | | | | | tweak (cherry picked from commit 993b41216092fa6dc20d3755afe322cd1376b398)
* [release/1.4.10] cmd, core, eth, miner, params, tests: finalize the DAO forkPéter Szilágyi2016-07-1612-414/+7519
| | | | (cherry picked from commit 2c2e389b778b490fcaf14d9cc45a750647ca5c68)
* [release/1.4.10] accounts, core, eth: pass chain config for chain maker to ↵Péter Szilágyi2016-07-1617-133/+182
| | | | | | test DAO (cherry picked from commit 3291235711082759cd7b70253c02150a80d57011)
* [release/1.4.10] core, params, tests: add DAO hard-fork balance movesPéter Szilágyi2016-07-1610-42/+2011
| | | | (cherry picked from commit 461cdb593b9e5bd9ae9ac35c68809a3a29290dcb)
* [release/1.4.10] core, eth: enforce network split post DAO hard-forkPéter Szilágyi2016-07-164-7/+141
| | | | (cherry picked from commit 7f00e8c0331bf13739e749bab88bf9006ca02f96)
* [release/1.4.10] cmd, core, miner: add extradata validation to consensus rulesPéter Szilágyi2016-07-167-216/+275
| | | | (cherry picked from commit a87089fd2dc08a69a4a4f1ef93db9a2871d819a3)
* [release/1.4.10] cmd/geth, miner, params: special extradata for DAO fork startPéter Szilágyi2016-07-163-6/+22
| | | | (cherry picked from commit 1e24c2e4f428c85c2f83272af2696469cb8f5bed)
* [release/1.4.10] core: gracefully handle missing homestead block configPéter Szilágyi2016-07-162-1/+106
| | | | (cherry picked from commit 9e56811a3773e225bedf6bf0003327ea1aaae040)
* [release/1.4.10] cmd, core, eth, params: implement flags to control dao fork ↵Péter Szilágyi2016-07-167-46/+354
| | | | | | blocks (cherry picked from commit 6060e098c929792f455d7f580ed91e914d28cf3b)
* [release/1.4.10] circleci: enable docker based hive testingPéter Szilágyi2016-07-161-0/+32
| | | | (cherry picked from commit 6f1e45d5ba55dd55cafc81ef7d52457d16631686)
* [release/1.4.10] README: expand with "Running Geth" sectionPéter Szilágyi2016-07-161-0/+191
| | | | (cherry picked from commit ca211065b653fe0861337a5204bbd547c75ea84f)
* [release/1.4.10] eth/downloader: return invalid chain (peer drop) on import ↵Péter Szilágyi2016-07-161-1/+1
| | | | | | fails (cherry picked from commit a691aa2a13a97588208246b5e7bc70c2e3f15780)
* [release/1.4.10] core: solve a remote-import/local-mine data racePéter Szilágyi2016-07-161-4/+3
| | | | (cherry picked from commit f5a29eab5ce6ada8fef2378b96384cc81586b6ce)
* [release/1.4.10] containers/docker/master-alpine: drop gmp dependencyPéter Szilágyi2016-07-161-5/+5
| | | | (cherry picked from commit 092fcaffe43ad450e4710dd3bd054b69f3f2c972)
* [release/1.4.10] eth: disable eth/61 to prepare for more elaborate fork sync ↵Péter Szilágyi2016-07-161-2/+2
| | | | | | algos (cherry picked from commit ddfef211258f027b748dbff6f71b8609bf898c11)
* VERSION, cmd/geth: bumped version 1.4.9Péter Szilágyi2016-06-292-2/+2
|
* [release/1.4.9] Revert "test, cmd/evm, core, core/vm: illegal code hash ↵Péter Szilágyi2016-06-2911-95/+29
| | | | | | implementation" This reverts commit a9c94cbf48fefe39104ee3495df139ff374dd219.
* [release/1.4.9] Revert "core: add voting and result tracking for the dao ↵Péter Szilágyi2016-06-295-436/+20
| | | | | | soft-fork" This reverts commit f31a3a251afad1d4c7169bc530fe60471df36122.
* [release/1.4.9] Revert "core: update DAO soft-fork number, clean up the code"Péter Szilágyi2016-06-2910-49/+67
| | | | This reverts commit aefffc9ed8ca60ebe58e06066b30f1283493f488.
* [release/1.4.9] Revert "core: update the DAO soft fork proposal to the final ↵Péter Szilágyi2016-06-291-1/+1
| | | | | | block" This reverts commit b170a80cdcb380765c711017588b2d148eb1601e.
* VERSION, cmd/geth: bumped version 1.4.8Péter Szilágyi2016-06-242-2/+2
|
* [release/1.4.8] core: update the DAO soft fork proposal to the final blockPéter Szilágyi2016-06-241-1/+1
| | | | (cherry picked from commit 1e3a7d4fab36df9382d023519ef10e3c34bafa3b)
* [release/1.4.8] core: update DAO soft-fork number, clean up the codePéter Szilágyi2016-06-2410-67/+49
| | | | (cherry picked from commit ba784bdf36f2daf7827ec1ec864f3393ba8d86a0)
* [release/1.4.8] core: add voting and result tracking for the dao soft-forkPéter Szilágyi2016-06-245-20/+436
| | | | (cherry picked from commit c4de28938ff8c688c4444c8b3e8e28a52cbc62ff)
* [release/1.4.8] test, cmd/evm, core, core/vm: illegal code hash implementationJeffrey Wilcke2016-06-2411-29/+95
| | | | | | | | | | 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. (cherry picked from commit 7a5b571c671e70e0e4807cf971c15e2d1e09d33d)
* VERSION, cmd/geth: bumped version 1.4.7Péter Szilágyi2016-06-152-2/+2
|
* [release/1.4.7] cmd/evm: added --create flag indicating the exec code is to ↵Jeffrey Wilcke2016-06-151-11/+34
| | | | | | | | | | | | | | be created This fixes an issue if you wanted to test out code deployment rather than running a piece of code with an argument. This solves it by adding a --create flag that indicates the Create function should be used rather than the Call function. This also adds a statedb.commit call so that the proper state can be dumped when requested using the --dump flag. (cherry picked from commit e5165aeb277b1f1ae8d5bf60c22716ccd874a8e6)
* [release/1.4.7] cmd/utils: add space between "to" and filenameTosh Camille2016-06-151-5/+5
| | | | (cherry picked from commit ac66d96c5acd4661253aad8015aa245c6788cd45)
* [release/1.4.7] accounts/abi: fix uint64 upper range encoding.Péter Szilágyi2016-06-142-21/+33
| | | | (cherry picked from commit 0f9539e1e3e77bb181d67591cfbb77f6a17e5537)
* [release/1.4.7] core/state, eth: Updated suicides objects when tracing ↵Jeffrey Wilcke2016-06-142-0/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | transactions 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 (cherry picked from commit bb3651abc865c6f6babec0d357afa85f5a539d83)
* [release/1.4.7] eth/downloader: fix occasional fast sync critical section ↵Péter Szilágyi2016-06-141-1/+3
| | | | | | test fails (cherry picked from commit 783289068a63b3accbc6d69cb0ecc0f2c39c5f54)
* [release/1.4.7] cmd: fix CLI package deprecation warningsPéter Szilágyi2016-06-148-27/+55
| | | | (cherry picked from commit 90e07b19abaa950eaaff2eecc4918b1d16ebbcaf)
* [release/1.4.7] cmd/geth: codegansta/cli package renamed to urfave/cliBas van Kervel2016-06-1435-626/+1309
| | | | (cherry picked from commit 861add3d72bcfc6c6a8976eb82dc3e7b5288883e)
* [release/1.4.7] accounts/abi: Negative numbers not properly converted in ABI ↵Thomas Bocek2016-06-144-64/+10
| | | | | | | | | | | | | | | | | | | encoding When converting a negative number e.g., -2, the resulting ABI encoding should look as follows: fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe. However, since the check of the type is for an uint instead of an int, it results in the following ABI encoding: 0101010101010101010101010101010101010101010101010101010101010102. The Ethereum ABI (https://github.com/ethereum/wiki/wiki/Ethereum-Contract-ABI) says, that signed integers are stored in two's complement which should be of the form ffffff.... and not 01010101..... for e.g. -1. Thus, I removed the type check in numbers.go as well as the function S256 as I don't think they are correct. Or maybe I'm missing something? (cherry picked from commit 89c6c5bb85ff24c152218f245fa366e733c951a7)
* [release/1.4.7] console: ignore round and curly brackets in strings when ↵Bas van Kervel2016-06-142-2/+91
| | | | | | determining indentation level (cherry picked from commit dbcdf83ed8aca3f0b84d67b944fff2f3a8bc7769)
* [release/1.4.7] cmd/geth: fix the keystore path in the accounts help textPéter Szilágyi2016-06-141-1/+1
| | | | (cherry picked from commit 7c0eb47dfb957c045361cf7297b2935fd3e6a25a)
* [release/1.4.7] cmd/geth: truly randomize console test RPC endpointsPéter Szilágyi2016-06-141-4/+12
| | | | (cherry picked from commit 32258af87be39994baca95aa92cb5565ee69571a)
* [release/1.4.7] console: fix windows color transformation issuePéter Szilágyi2016-06-141-1/+2
| | | | (cherry picked from commit d251d48439bf85d0fb0b52dd931e5ec6aea8b412)
* VERSION, cmd/geth: bumped version 1.4.6Péter Szilágyi2016-06-062-2/+2
|
* [release/1.4.6] eth: don't accept transactions until we sync up with the networkPéter Szilágyi2016-06-063-4/+13
| | | | (cherry picked from commit 32559ccad1e0519ce1decc4b90df021fe215a811)
* [release/1.4.6] eth/downloader: adaptive quality of service tuningPéter Szilágyi2016-06-063-48/+235
| | | | (cherry picked from commit 88f174a014c1f2f99fa6d6a8054ada28a0b43504)
* [release/1.4.6] eth/downloader: make fast sync resilient to critical section ↵Péter Szilágyi2016-06-062-26/+109
| | | | | | fails (cherry picked from commit 61ee9f299deb2bace8aa37778d248822793dd5ce)
* [release/1.4.6] core: add missing lock in TxPool.{GetTransaction,RemoveTx}Felix Lange2016-06-061-1/+10
| | | | | | Fixes #2650 (cherry picked from commit fc85dd175ebeef4996e5d370a7a2f085c922196d)
* [release/1.4.6] cmd/geth: make console tests more robustFelix Lange2016-06-061-18/+28
| | | | | | | | * use --port 0 to avoid p2p port conflicts * use --maxpeers 0 so it doesn't connect to bootstrap nodes * use geth.expectExit() to wait for termination (cherry picked from commit b57b6e341e3865de3b3a5aa108e642d1a6a5b590)
* [release/1.4.6] console: remove unnecessary JS evaluation in WelcomeFelix Lange2016-06-061-10/+8
| | | | (cherry picked from commit ad0e6e971e7d03c07842cc236fec09c73f93f465)
* [release/1.4.6] internal/jsre: ensure Stop can be called more than onceFelix Lange2016-06-061-7/+9
| | | | | | This makes "geth js file.js" terminate again. (cherry picked from commit fdba0cb03cf4e5a87cdcc2ebc0f381ad32f5ad3e)
* [release/1.4.6] eth/downloader: ensure cancel channel is closed post syncPéter Szilágyi2016-06-062-1/+13
| | | | (cherry picked from commit 4496a44f68246bf128bb822c3f3a98f38adfdbdd)
* [release/1.4.6] eth/downloader, trie: pull head state concurrently with chainPéter Szilágyi2016-06-063-30/+41
| | | | (cherry picked from commit 4f1d92b3329572d75a20b9f9e1cccdf74aa7c79f)
* [release/1.4.6] cmd/geth, console: fix reviewer issuesPéter Szilágyi2016-06-066-49/+68
| | | | (cherry picked from commit da729e5b386ca0fd32344dcc1fd63d14c0bb39ab)
* [release/1.4.6] console, internal/jsre: colorize JavaScript exceptions tooPéter Szilágyi2016-06-064-12/+37
| | | | (cherry picked from commit 14ae5708d61059d424c9be9822b85a3f4bb392b3)
* [release/1.4.6] cmd, console: split off the console into a reusable packagePéter Szilágyi2016-06-0626-1519/+1548
| | | | (cherry picked from commit ffaf58f0a98bd987bbe76e8669bb22c405dcd62a)
* [release/1.4.6] core, core/state, trie: enterprise hand-tuned multi-level ↵Péter Szilágyi2016-06-069-133/+244
| | | | | | caching (cherry picked from commit 748d1c171d74fbf6b6051fd629d3c2204dd930e3)
* [release/1.4.6] core/state: return the starting nonce for non-existent accs ↵Péter Szilágyi2016-06-061-1/+1
| | | | | | (testnet) (cherry picked from commit 8ee84584a407464511b453eebaa31854979aa593)
* [release/1.4.6] eth: enable bad block reportsFelix Lange2016-06-067-87/+104
| | | | | | | | | | | | | | 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. (cherry picked from commit ca18202eb9a94de1d4b51c1572fa74edfa2773bf)
* [release/1.4.6] misc: fix spelling mistakeObulapathi N Challa2016-06-061-1/+1
| | | | (cherry picked from commit f3769a97d5b4fa899f0bf673ff4c33a21d12ec38)
* [release/1.4.6] eth/api: fixed GetCompilers when there is no error creating SolcRémy Roy2016-06-061-1/+1
| | | | (cherry picked from commit f86ea9aad5b14051d5d311591148387b2e6da725)
* [release/1.4.6] common/compiler: support relative path to solcRémy Roy2016-06-061-1/+0
| | | | (cherry picked from commit 5eb60a6da23296f54081c92a6223935bfce81859)
* [release/1.4.6] Just to make it clear how to build all executablesGianfranco Cecconi2016-06-061-0/+4
| | | | (cherry picked from commit 2e530f48892dd97fab362da7123319dc8c407444)
* [release/1.4.6] core: Simplify bloom9 tests with available convenience ↵Fabio Berger2016-06-061-2/+2
| | | | | | method `TestBytes` (cherry picked from commit faf663133b7d784406a6bfc029404b2718abc66d)
* [release/1.4.6] eth/downloader: fix reviewer commentsPéter Szilágyi2016-06-062-9/+32
| | | | (cherry picked from commit 8906b2fe0934c67ebb1db5d4d77acdf1a7e988f0)
* [release/1.4.6] eth/downloader: stream partial skeleton filling to processorPéter Szilágyi2016-06-063-19/+55
| | | | (cherry picked from commit e86619e75d1bd1209818ab4df2fac52e3c43b5e1)
* [release/1.4.6] eth/downloader: implement concurrent header downloadsPéter Szilágyi2016-06-064-211/+584
| | | | (cherry picked from commit b40dc8a1daf4bd1f293cf322274b470ad91517fb)
* [release/1.4.6] node, p2p: move network config out of ServerFelix Lange2016-06-064-28/+36
| | | | | | This silences a go vet message about copying p2p.Server in package node. (cherry picked from commit 542b839ec74ff0ce94ab0d34e25531f5819d95d1)
* [release/1.4.6] README: fix typosChanghoon Lee2016-06-061-3/+3
| | | | | README: fix typos (cherry picked from commit 2348f8e2a8f2203e8ce4058cb23135579556be53)
* [release/1.4.6] cmd/geth: use text/templates in the tester, not htmlPéter Szilágyi2016-06-061-1/+1
| | | | (cherry picked from commit 284f1d6beb589d240a18e9b63560266041fa9798)
* [release/1.4.6] cmd/geth, internal/web3ext, rpc: surface rpc module, fix ↵Péter Szilágyi2016-06-064-92/+94
| | | | | | shh, fix miner (cherry picked from commit bc6fdad786706019fc5aeb9605f1d23b3c5b7522)
* [release/1.4.6] travis: run CI builds against multiple Go versionsPéter Szilágyi2016-06-061-3/+5
| | | | (cherry picked from commit bc3b406bffc9c6f38420f1504cb7eba0b92cad3b)
* VERSION, cmd/geth: bumped version 1.4.5Péter Szilágyi2016-05-242-2/+2
|
* [release 1.4.5] accounts/abi: fix abi test for go vet...Péter Szilágyi2016-05-241-2/+2
| | | | (cherry picked from commit 251b3c6406aee5876c87016bd088c8cefe7c08f6)
* [release 1.4.5] accounts/abi/bind, eth: rely on getCode for sanity checks, ↵Péter Szilágyi2016-05-247-28/+112
| | | | | | not estimate and call (cherry picked from commit 1580ec180414bce1e37acc614bc2445f778efb75)
* [release 1.4.5] eth: fixed regression in eth_signTransaction fixes #2578Jeffrey Wilcke2016-05-241-1/+1
| | | | | | | Sign transaction returned the unsigned transaction rather than the signed one. (cherry picked from commit 4b1a7d3868e796ee70f62985379e59f933a2aca0)
* [release 1.4.5] eth/filter: bugfix which can cause a nil pointer crash when ↵Bas van Kervel2016-05-242-38/+234
| | | | | | parsing filter arguments (cherry picked from commit 67cd4ee8d26e9ebe2714faaca856e73512236834)
* [release 1.4.5] cmd/geth: fix console history exclusionFelix Lange2016-05-241-6/+3
| | | | | | | | | | | Calls to 'personal' API should be excluded from console history because they can be called with an account passphrase as argument. The check for such calls was inverted and didn't work. (cherry picked from commit 86da6feb40fd366c75236d87fa306576c51ed2a8) Conflicts: cmd/geth/js.go
* [release/1.4.5] eth: add new RPC method (personal.) SignAndSendTransactionBas van Kervel2016-05-246-99/+207
| | | | | | | | (cherry picked from commit 64a6c2c1b6c81fddccc7d3d728b7a05c5814124b) Conflicts: cmd/geth/js.go internal/web3ext/web3ext.go
* [release/1.4.4] eth: skip transaction handling during fast syncPéter Szilágyi2016-05-173-14/+23
| | | | (cherry picked from commit d87f7a1e817cbecbb62c012ed3811ceba933ae3a)
* VERSION, cmd/geth: bumped version 1.4.4Jeffrey Wilcke2016-05-132-2/+2
|
* [release/1.4.4] event: fixed subscribtions to stopped event muxJeffrey Wilcke2016-05-132-0/+11
| | | | | | | | | | | | | | | This fixes an issue where the following would lead to a panic due to a channel being closed twice: * Start mux * Stop mux * Sub to mux * Unsub This is fixed by setting the subscriptions status to closed resulting in the Unsubscribe to ignore the request when called. (cherry picked from commit 7c1f74713e273d1e4f1982466eb6fd96e55e8c4d)
* [release/1.4.4] eth/downloader: bound fork ancestry and allow heavy short forksPéter Szilágyi2016-05-122-43/+201
|
* [release/1.4.4] core: fixed pointer assignmentJeffrey Wilcke2016-05-121-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.
* [release/1.4.4] accounts/abi/bind: fix multi-value anonymous unmarshallingPéter Szilágyi2016-05-122-3/+37
| | | | (cherry picked from commit cc21706c5007e8f400df536591948aee69e82d2f)
* [release/1.4.4] accounts/abi: fixed unpacking in to already slice interfacesJeffrey Wilcke2016-05-123-31/+94
| | | | | | | | | | | | | | | | | | Previously it was assumed that wheneven type `[]interface{}` was given that the interface was empty. The abigen rightfully assumed that interface slices which already have pre-allocated variable sets to be assigned. This PR fixes that by checking that the given `[]interface{}` is larger than zero and assigns each value using the generic `set` function (this function has also been moved to abi/reflect.go) and checks whether the assignment was possible. The generic assignment function `set` now also deals with pointers (useful for interface slice mentioned above) by dereferencing the pointer until it finds a setable type. (cherry picked from commit 91a7a4a7867718ccb6c9620120a1be5680ad0abd)
* [release/1.4.4] rpc: HTTP origin case insensitiveBas van Kervel2016-05-121-4/+4
| | | | (cherry picked from commit 54790977904cd51671ab57d926d83175dbc2ca55)
* VERSION, cmd/geth: bumped version 1.4.3v1.4.3Jeffrey Wilcke2016-05-102-2/+2
|
* [release/1.4.3] miner: fixed pending state by not shutting down update loopJeffrey Wilcke2016-05-101-4/+0
| | | | (cherry picked from commit a824c3f02f74eb11b4382abbb92aa8babc5d685c)
* VERSION, cmd/geth: bumped version 1.4.2Jeffrey Wilcke2016-05-101-1/+1
|
* VERSION, cmd/geth: bumped version 1.4.2v1.4.2Jeffrey Wilcke2016-05-101-5/+5
|
* Merge branch 'develop' into release/1.4Jeffrey Wilcke2016-05-1021-100/+239
|\
| * Merge pull request #2529 from fjl/fdlimit-bsdPéter Szilágyi2016-05-092-1/+55
| |\ | | | | | | cmd/utils: fix build on *BSD
| | * cmd/utils: fix build on *BSDFelix Lange2016-05-092-1/+55
| | |
| * | Merge pull request #2524 from fjl/windows-ci-scriptsPéter Szilágyi2016-05-092-0/+41
| |\ \ | | | | | | | | build: add CI scripts for windows
| | * | build: add CI scripts for windowsFelix Lange2016-05-082-0/+41
| | |/
| * | Merge pull request #2523 from fjl/shutdownPéter Szilágyi2016-05-097-70/+101
| |\ \ | | | | | | | | core, eth, miner: improve shutdown synchronisation
| | * | core, eth, miner: improve shutdown synchronisationFelix Lange2016-05-097-70/+101
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | Merge pull request #2528 from karalabe/fix-web3-eth_syncingPéter Szilágyi2016-05-091-1/+6
| |\ \ | | | | | | | | jsre: hotfix web3 for the console eth.syncing formatting
| | * | jsre: hotfix web3 for the console eth.syncing formattingPéter Szilágyi2016-05-091-1/+6
| |/ /
| * | Merge pull request #2527 from obscuren/trace-transaction-fixJeffrey Wilcke2016-05-091-2/+2
| |\ \ | | | | | | | | eth: fixed tracing functions using the current header instead of parent
| | * | eth: fixed tracing functions using the current header instead of parentJeffrey Wilcke2016-05-091-2/+2
| |/ / | | | | | | | | | Fixes #2525
| * | Merge pull request #2520 from karalabe/makefile-cross-updatePéter Szilágyi2016-05-091-2/+4
| |\ \ | | | | | | | | Makefile: go build instead of install (solves cross compile issues)
| | * | Makefile: go build instead of install (solves cross compile issues)Péter Szilágyi2016-05-061-2/+4
| | | |
| * | | Merge pull request #2514 from bas-vk/startRPC_WSPéter Szilágyi2016-05-081-2/+10
| |\ \ \ | | |_|/ | |/| | node: start RPC/WS interface on localhost by default
| | * | node: start RPC/WS interface on localhost by defaultBas van Kervel2016-05-061-2/+10
| | | |
| * | | Merge pull request #2518 from fjl/debug-go-tracePéter Szilágyi2016-05-066-18/+16
| |\ \ \ | | |_|/ | |/| | internal/debug: also rename debug_startTrace to debug_startGoTrace
| | * | cmd/utils: flush trace and CPU profile data when force-quttingFelix Lange2016-05-061-4/+2
| | | | | | | | | | | | | | | | Also reduce log messages a little bit.
| | * | internal/debug: also rename debug_startTrace to debug_startGoTraceFelix Lange2016-05-065-14/+14
| |/ / | | | | | | | | | This was missing from the previous change.
| * | Merge pull request #2517 from fjl/debug-go-traceJeffrey Wilcke2016-05-062-4/+4
| |\ \ | | |/ | |/| internal/debug: rename debug_trace to debug_goTrace
| | * internal/debug: rename debug_trace to debug_goTraceFelix Lange2016-05-062-4/+4
| |/ | | | | | | Reduces confusion with EVM execution tracing methods.
* | Merge branch 'develop' into release/1.4v1.4.1Jeffrey Wilcke2016-05-031-1/+1
|\|
| * Merge pull request #2511 from obscuren/ver-fixJeffrey Wilcke2016-05-031-1/+1
| |\ | | | | | | cmd/geth: fixed to use proper version string for output
| | * cmd/geth: fixed to use proper version string for outputJeffrey Wilcke2016-05-031-1/+1
| |/
* | Merge branch 'develop' into release/1.4Jeffrey Wilcke2016-05-0342-531/+2481
|\| | | | | | | | | Conflicts: cmd/geth/main.go
| * Merge pull request #2510 from fjl/p2p-fixupsJeffrey Wilcke2016-05-033-29/+82
| |\ | | | | | | p2p/discover: prevent bonding self
| | * p2p/discover: prevent bonding selfFelix Lange2016-05-031-0/+4
| | |
| | * p2p: improve readability of dial task scheduling codeFelix Lange2016-05-032-29/+78
| | |
| * | Merge pull request #2505 from karalabe/make-readme-suck-lessJeffrey Wilcke2016-05-031-25/+36
| |\ \ | | | | | | | | Make the README suck less :P
| | * | README: Polish up exec section, rewrite contrib and add license.Péter Szilágyi2016-05-031-25/+36
| |/ /
| * | Merge pull request #2497 from karalabe/version-contract-3Jeffrey Wilcke2016-05-0313-53/+1407
| |\ \ | | |/ | |/| Geth release oracle
| | * cmd/geth, release: polish and deploy live release contractPéter Szilágyi2016-05-022-2/+2
| | |
| | * release, all: integrate the release service into gethPéter Szilágyi2016-05-0214-583/+822
| | |
| | * common/releases: rewrite release version contract + use native dappsPéter Szilágyi2016-05-026-367/+1107
| | |
| | * common/versions, cmd/utils: add geth version contractGustav Simonsson2016-05-024-0/+375
| |/
| * Merge pull request #2493 from almindor/developFelix Lange2016-04-303-7/+38
| |\ | | | | | | eth: add personal_importRawKey
| | * eth: add personal_importRawKey for runtime private key importAles Katona2016-04-283-7/+38
| | |
| * | Merge pull request #2504 from Arachnid/public-vmconfigPéter Szilágyi2016-04-291-0/+3
| |\ \ | | | | | | | | Provide a public accessor for ChainConfig
| | * | 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.
| * | | Merge pull request #2485 from karalabe/fakepowPéter Szilágyi2016-04-293-5/+16
| |\ \ \ | | |/ / | |/| | cmd: add a `--fakepow` flag to help benchmarking database changes
| | * | cmd: add a `--fakepow` flag to help benchmarking database changesPéter Szilágyi2016-04-213-5/+16
| | | |
| * | | Merge pull request #2435 from obscuren/abi-array-fixesPéter Szilágyi2016-04-288-362/+733
| |\ \ \ | | | | | | | | | | accounts/abi: refactored ABI package
| | * | | accounts/abi: fixed string and fixed size bytes packingJeffrey Wilcke2016-04-286-85/+137
| | | | |
| | * | | accounts/abi: added unpacking "anything" in to interface{}Jeffrey Wilcke2016-04-282-0/+11
| | | | |
| | * | | accounts/abi: fixed strict go-like unpackingJeffrey Wilcke2016-04-282-27/+158
| | | | |
| | * | | accouns/abi: refactored ABI packageJeffrey Wilcke2016-04-208-314/+491
| | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refactored the abi package parsing and type handling. Relying mostly on package reflect as opposed to most of our own type reflection. Our own type reflection is still used however for cases such as Bytes and FixedBytes (abi: bytes•). This also inclused several fixes for slice handling of arbitrary and fixed size for all supported types. This also further removes implicit type casting such as assigning, for example `[2]T{} = []T{1}` will fail, however `[2]T{} == []T{1, 2}` (notice assigning *slice* to fixed size *array*). Assigning arrays to slices will always succeed if they are of the same element type. Incidentally also fixes #2379
| * | | Merge pull request #2499 from bas-vk/reorg-logsJeffrey Wilcke2016-04-281-1/+1
| |\ \ \ | | | | | | | | | | eth/filters: ignore logs that don't match filter criteria on chain reorg
| | * | | eth/filters: ignore logs that don't match filter criteria on chain reorgBas van Kervel2016-04-281-1/+1
| | | | |
| * | | | Merge pull request #2491 from obscuren/genesis-config-fixJeffrey Wilcke2016-04-281-1/+1
| |\ \ \ \ | | |/ / / | |/| | | core, eth: added json tag field for proper unmarshalling
| | * | | 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
| * | | Merge pull request #2496 from karalabe/abibind-missing-contract-errorPéter Szilágyi2016-04-275-4/+75
| |\ \ \ | | | | | | | | | | accounts/abi/bind, eth: add contract non-existent error
| | * | | accounts/abi/bind, eth: add contract non-existent errorPéter Szilágyi2016-04-275-4/+75
| |/ / /
| * | | Merge pull request #2492 from fjl/accounts-arm64Péter Szilágyi2016-04-262-2/+2
| |\ \ \ | | | | | | | | | | accounts: disable file system watch on linux/arm64
| | * | | accounts: disable file system watch on linux/arm64Felix Lange2016-04-252-2/+2
| | | |/ | | |/|
| * | | Merge pull request #2484 from pcasaretto/address-test-coveragePéter Szilágyi2016-04-262-3/+37
| |\ \ \ | | | | | | | | | | Improve Address test coverage
| | * | | common: Add tests for Address#UnmarshalJSONPaulo L F Casaretto2016-04-262-3/+37
| | | |/ | | |/|
| * | | Merge pull request #2478 from fjl/geth-js-tweakFelix Lange2016-04-263-13/+34
| |\ \ \ | | |_|/ | |/| | cmd/geth, jsre: improve the js command
| | * | cmd/geth, jsre: improve the js commandFelix Lange2016-04-213-13/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | geth js stopped the JS runtime after running the first input file and blocked for pending callbacks. This commit makes it process all files and enables quitting with Ctrl-C regardless of callbacks. Error reporting is also improved. If a script fails to load, the error is printed and includes the backtrace. package jsre now ensures that otto is aware of the filename, the backtrace will contain them. Before: $ geth js bad.js; echo "exit $?" ... log messages ... exit 0 After: $ geth js bad.js; echo "exit $?" ... log messages ... Fatal: JavaScript Error: Invalid number of input parameters at web3.js:3109:20 at web3.js:4917:15 at web3.js:4960:5 at web3.js:4984:23 at checkWork (bad.js:11:9) at bad.js:19:1 exit 1
| * | | Merge pull request #2481 from fjl/bootnode-fixupFelix Lange2016-04-251-28/+18
| |\ \ \ | | |_|/ | |/| | cmd/bootnode: fix -genkey, add logging options
| | * | cmd/bootnode: fix -genkey, add logging optionsFelix Lange2016-04-221-28/+18
| | |/
| * / VERSION, cmd/geth: bumped versionJeffrey Wilcke2016-04-202-3/+3
| |/
* / VERSION, cmd/geth: bumped versionv1.4.0Jeffrey Wilcke2016-04-201-1/+1
|/
* Merge pull request #2463 from fjl/rpc-context-keyPéter Szilágyi2016-04-196-12/+18
|\ | | | | rpc: remove NotifierContextKey
| * rpc: remove NotifierContextKeyFelix Lange2016-04-166-12/+18
| | | | | | | | | | | | | | Context keys must have a unique type in order to prevent any unintented clashes. The code used int(1) as key. Fix it by implementing the pattern recommended by package context.
* | Merge pull request #2462 from fjl/rpc-remove-jsFelix Lange2016-04-162-13/+12
|\ \ | | | | | | rpc: move web3.js extensions to internal/web3ext
| * | rpc: move web3.js extensions to internal/web3extFelix Lange2016-04-152-13/+12
| |/
* | Merge pull request #2461 from karalabe/fix-simulator-estimatesPéter Szilágyi2016-04-151-1/+1
|\ \ | |/ |/| accounts/abi/bind/backends: estimate needed gas, not used
| * accounts/abi/bind/backends: estimate needed gas, not usedPéter Szilágyi2016-04-151-1/+1
|/
* Merge pull request #2458 from fjl/go-vetFelix Lange2016-04-1551-118/+130
|\ | | | | all: fix go vet warnings
| * Makefile: enable go vet on Travis CIFelix Lange2016-04-151-0/+1
| |
| * all: fix go vet warningsFelix Lange2016-04-1541-93/+83
| |
| * 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.
| * logger/glog: fix go vet issuesFelix Lange2016-04-152-9/+9
| | | | | | | | | | logging.printf triggered a format string warning. Silence it by renaming the function.
| * core, core/types, eth: add and use Block.BodyFelix Lange2016-04-155-7/+10
| | | | | | | | | | This fixes a few uses of unkeyed Body literals which go vet was complaining about.
* | Merge pull request #2460 from fjl/whisper-expiration-test-delayPéter Szilágyi2016-04-152-9/+5
|\ \ | |/ |/| whisper: deflake Test*MessageExpiration
| * whisper: deflake Test*MessageExpirationFelix Lange2016-04-152-9/+5
|/ | | | | | These tests have become a common annoyance on CI. Fix them by allowing messages with expiration == now into the cache and delaying the check for expired message handling slightly.
* Merge pull request #2457 from fjl/license-update-1.4Felix Lange2016-04-1561-88/+373
|\ | | | | all: update license information
| * all: update license informationFelix Lange2016-04-1560-82/+357
| |
| * build: tweak update-license.goFelix Lange2016-04-151-6/+16
|/
* Merge pull request #2456 from bas-vk/rpc-arg-whitespacePéter Szilágyi2016-04-141-2/+12
|\ | | | | cmd/utils: strip excessive whitespace from api command line arguments
| * cmd/utils: strip excessive whitespace from api command line argumentsBas van Kervel2016-04-141-2/+12
| |
* | Merge pull request #2454 from karalabe/trace-fixPéter Szilágyi2016-04-142-53/+65
|\ \ | |/ |/| eth: fix single transaction tracing (run prev mutations)
| * eth, rpc: make trace configs optionalPéter Szilágyi2016-04-142-13/+19
| |
| * eth: fix single transaction tracing (run prev mutations)Péter Szilágyi2016-04-141-41/+47
|/
* Merge pull request #2235 from fjl/chaindb-api-and-console-fixesFelix Lange2016-04-137-14/+78
|\ | | | | eth: add chaindbProperty to debug API (+ console fixes)
| * internal/debug: add memStats and gcStats to APIFelix Lange2016-04-132-0/+25
| |
| * eth: add chaindbProperty to debug APIFelix Lange2016-04-132-0/+24
| |
| * jsre: hide fields with prefix _ when pretty-printingFelix Lange2016-04-131-1/+1
| | | | | | | | This makes web3 internals like _requestManager invisible.
| * jsre: fix <tab><tab> completion magicFelix Lange2016-04-132-4/+17
| |
| * jsre: expose DoFelix Lange2016-04-132-9/+11
|/
* Merge pull request #2450 from karalabe/fix-ios-kqueuePéter Szilágyi2016-04-132-2/+2
|\ | | | | accounts: disable filesystem notifications on iOS
| * accounts: disable filesystem notifications on iosPéter Szilágyi2016-04-132-2/+2
|/
* Merge pull request #2448 from fjl/jsre-bignumFelix Lange2016-04-131-5/+13
|\ | | | | jsre: print BigNumber objects with custom constructor as number
| * jsre: print BigNumber objects with custom constructor as numberFelix Lange2016-04-121-5/+13
|/
* Merge pull request #2446 from karalabe/console-unlock-fixFelix Lange2016-04-121-3/+2
|\ | | | | cmd/utils: fix accounts merge error on console unlock
| * cmd/utils: fix accounts merge error on console unlockPéter Szilágyi2016-04-121-3/+2
|/
* Merge pull request #2284 from fjl/accounts-addr-cachePéter Szilágyi2016-04-1296-1213/+7346
|\ | | | | accounts: cache key addresses
| * accounts: ensure TimedUnlock does not override indefinite unlock timeoutFelix Lange2016-04-122-10/+16
| |
| * accounts: improve API and add documentationFelix Lange2016-04-126-58/+97
| | | | | | | | | | - Sign takes common.Address, not Account - Import/Export methods work with encrypted JSON keys
| * cmd/geth: add recovery procedure for AmbiguousAddrErrorFelix Lange2016-04-126-2/+110
| |
| * cmd/utils: fix --password on WindowsFelix Lange2016-04-121-9/+14
| | | | | | | | | | Text files created on Windows typically have \r\n line endings. Trim them when reading password files.
| * cmd/geth: print actual error when --unlock failsFelix Lange2016-04-122-4/+4
| |
| * eth: report unlock errors to RPC clientsFelix Lange2016-04-121-4/+3
| |
| * accounts: add ErrDecryptFelix Lange2016-04-126-9/+8
| |
| * accounts: cache key addressesFelix Lange2016-04-1218-368/+1057
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In order to avoid disk thrashing for Accounts and HasAccount, address->key file mappings are now cached in memory. This makes it no longer necessary to keep the key address in the file name. The address of each key is derived from file content instead. There are minor user-visible changes: - "geth account list" now reports key file paths alongside the address. - If multiple keys are present for an address, unlocking by address is not possible. Users are directed to remove the duplicate files instead. Unlocking by index is still possible. - Key files are overwritten written in place when updating the password.
| * Godeps: add github.com/rjeczalik/notifyFelix Lange2016-04-1237-0/+4702
| |
| * cmd/geth: add tests for account commandsFelix Lange2016-04-1217-1/+550
| |