core/state: fix panic in state dumping (#22225)

# Conflicts:
#	core/state/dump.go
This commit is contained in:
Martin Holst Swende 2021-01-26 12:15:31 +01:00 committed by Igor Mandrigin
parent 951ba14b7e
commit cd63ae0f60

View File

@ -1163,63 +1163,3 @@ Date: Tue Jan 26 12:17:11 2021 +0100
Charts and background info can be found here: https://github.com/holiman/headerimport/blob/main/README.md
With these changes, writing 1M headers goes down to from 80s to 62s.
commit 14d495491ddf31464135563720705fc2c1e5eb22
Author: Martin Holst Swende <martin@swende.se>
Date: Tue Jan 26 12:15:31 2021 +0100
core/state: fix panic in state dumping (#22225)
commit 573f373d2bb264af6a2e39c3b219c999fc242122
Author: Péter Szilágyi <peterke@gmail.com>
Date: Tue Jan 26 13:13:55 2021 +0200
internal/ethapi: print tx details when submitting (#22170)
This adds more info about submitted transactions in log messages.
Co-authored-by: Felix Lange <fjl@twurst.com>
commit 7202b410b064c17c0648c4c6c212dc4c2a787907
Author: Marius van der Wijden <m.vanderwijden@live.de>
Date: Mon Jan 25 21:40:14 2021 +0100
tests/fuzzers/abi: fixed one-off panic with int.Min64 value (#22233)
* tests/fuzzers/abi: fixed one-off panic with int.Min64 value
* tests/fuzzers/abi: fixed one-off panic with int.Min64 value
commit d2779ed7acde5d0fa3ab53fcdc11ab1697703300
Author: Martin Holst Swende <martin@swende.se>
Date: Mon Jan 25 19:06:52 2021 +0100
eth, p2p: reserve half peer slots for snap peers during snap sync (#22171)
* eth, p2p: reserve half peer slots for snap peers during snap sync
* eth: less logging
* eth: rework the eth/snap peer reservation logic
* eth: rework the eth/snap peer reservation logic (again)
commit adf130def83fbf7b7902ff4bacab7bb369517dcb
Author: Gary Rong <garyrong0905@gmail.com>
Date: Mon Jan 25 21:36:39 2021 +0800
eth/tracers: move tracing APIs into eth/tracers (#22161)
This moves the tracing RPC API implementation to package eth/tracers.
By doing so, package eth no longer depends on tracing and the duktape JS engine.
The change also enables tracing using the light client. All tracing methods work with the
light client, but it's a lot slower compared to using a full node.
commit 49cdcf5c70735dc85bd9c22b45811a3ec7cef54d
Author: Gary Rong <garyrong0905@gmail.com>
Date: Mon Jan 25 21:29:45 2021 +0800
core: reset to genesis when middle block is missing (#22135)
When a sethead/rewind finds that the targeted block is missing, it resets to genesis instead of crashing. Closes #22129