- Aug 11, 2020
-
-
Péter Szilágyi authored
-
Péter Szilágyi authored
params: update CHTs for v1.9.19
-
Péter Szilágyi authored
-
- Aug 10, 2020
-
-
Martin Holst Swende authored
-
Péter Szilágyi authored
ethstats: split read and write lock, otherwise they'll lock up
-
Péter Szilágyi authored
-
Péter Szilágyi authored
eth/downloader: allow all timers to exit
-
Martin Holst Swende authored
-
- Aug 07, 2020
-
-
Péter Szilágyi authored
ethstats: overwrite old errors
-
Péter Szilágyi authored
eth/downloader: set deliverytime on drops and timeouts too
-
Martin Holst Swende authored
-
Gary Rong authored
* les: close all connected les-server when shutdown * les: linter nitpick Co-authored-by: Martin Holst Swende <martin@swende.se>
-
Martin Holst Swende authored
-
Péter Szilágyi authored
eth/downloader: save the correct delivery time for state sync
-
Péter Szilágyi authored
-
Péter Szilágyi authored
les: update checktime even if check fails
-
Martin Holst Swende authored
-
- Aug 06, 2020
-
-
Péter Szilágyi authored
* cmd/utils: grant snapshot cache to trie if disabled * eth: fix up default non-mainnet cache distribution
-
timcooijmans authored
-
rene authored
* chaincmd should make config nodes instead of full nodes * add documentation for using makeConfigNode instead of makeFullNode; * add documentation to functions * code style
-
Péter Szilágyi authored
core/vm: avoid map lookups for accessing jumpdest analysis
-
rene authored
* should fix import / export issues related to DB unavailability * document reason for makeConfigNode * fix comment * comment consistency * remove comments * lint
-
- Aug 05, 2020
-
-
rene authored
* eth65 tests linted * remove non-latest eth light tests
-
Robert Zaremba authored
-
Felix Lange authored
This adds a lock around requests because some routers can't handle concurrent requests. Requests are also rate-limited. The Map function request a new mapping exactly when the map timeout occurs instead of 5 minutes earlier. This should prevent duplicate mappings.
-
- Aug 04, 2020
-
-
Martin Holst Swende authored
-
Martin Holst Swende authored
Fixes #21403
-
Hao Duan authored
* core: avoid modification of accountSet cache in tx_pool when runReorg, we may copy the dirtyAccounts' accountSet cache to promoteAddrs in which accounts will be promoted, however, if we have reset request at the same time, we may reuse promoteAddrs and modify the cache content which is against the original intention of accountSet cache. So, we need to make a new slice here to avoid modify accountSet cache. * core: fix flatten condition + comment Co-authored-by: Felix Lange <fjl@twurst.com>
-
Adam Schmideg authored
Co-authored-by: Felix Lange <fjl@twurst.com>
-
- Aug 03, 2020
-
-
Natsu Kagami authored
* Handle hex strings for bytesX types * Add tests for parseBytes * Improve tests * Return nil bytes if error is non-nil * Right-pad instead of left-pad bytes * More tests
-
rene authored
This PR significantly changes the APIs for instantiating Ethereum nodes in a Go program. The new APIs are not backwards-compatible, but we feel that this is made up for by the much simpler way of registering services on node.Node. You can find more information and rationale in the design document: https://gist.github.com/renaynay/5bec2de19fde66f4d04c535fd24f0775. There is also a new feature in Node's Go API: it is now possible to register arbitrary handlers on the user-facing HTTP server. In geth, this facility is used to enable GraphQL. There is a single minor change relevant for geth users in this PR: The GraphQL API is no longer available separately from the JSON-RPC HTTP server. If you want GraphQL, you need to enable it using the ./geth --http --graphql flag combination. The --graphql.port and --graphql.addr flags are no longer available.
-
Natsu Kagami authored
* Do not check for a non-nil ChainId * Add encoding test
-
rene authored
Resolves #20163 Co-authored-by: Felix Lange <fjl@twurst.com>
-
- Jul 31, 2020
-
-
Felix Lange authored
Found by @protolambda
-
- Jul 30, 2020
-
-
Péter Szilágyi authored
core: sort txs at the same gas price by received time
-
- Jul 29, 2020
-
-
meowsbits authored
-
ucwong authored
This replaces the two-stage shutdown scheme with the one we use almost everywhere else: a single quit channel signalling termination. Co-authored-by: Felix Lange <fjl@twurst.com>
-
Julian Y authored
* Disable symbol table and DWARF generation by default. Trimpath if compiling with Go >= 1.13 * Set Go to minimum version 1.13. Revert debug symbol changes.
-
rene authored
* init notes removed some mentions of eth62, bumped protocol err too old to >=63 * remove sanity checks and bump supported protocol version up to 63 * remove 62 tests, still need to add 65 * remove 65 tests
-
Gary Rong authored
-