erigon-pulse/turbo
Jason Yellick aec1dcdeef
Delete retain_list_builder.go (#7096)
I was walking the code to try to understand in a bit more detail how the
state root hash is constructed and stumbled across
`retain_list_builder.go` as a consumer of the retain list APIs. But, as
far as I can tell, this file doesn't seem to actually be used anywhere
(including tests), and, it's seen no development (other than import
fixes) since 2020 or so. All linting and tests still pass for me locally
without it, so, I believe it's safe to simply remove.

Co-authored-by: Jason Yellick <jason@enya.ai>
2023-03-14 00:02:07 +00:00
..
adapter Switch AccessList, IntrinsicGas, SafeAdd/Mul to erigon-lib (#6709) 2023-01-26 12:26:12 +01:00
app save 2023-03-07 14:31:40 +07:00
builder blockValue should use gasUsed rather than gasLimit (#6875) 2023-02-14 15:05:27 +00:00
cli --torrent.staticpeers (#7052) 2023-03-08 08:30:00 +00:00
cmdtest move all packages from "internal" folder - to simplify users live (#5857) 2022-10-25 09:58:25 +07:00
debug Mock of Erigon support - step 1 (#6930) 2023-02-22 12:38:22 +00:00
engineapi stop writing to closed channel panic (#6763) 2023-02-06 18:17:32 +07:00
logging Upgrade urfave/cli to v2 (#6047) 2022-11-14 17:33:57 +01:00
mock reference hash, address, and chain config from lib (#6536) 2023-01-13 18:12:18 +00:00
node e3: read files list from db (#6833) 2023-02-13 05:17:01 +00:00
rlphacks Use go:build lines and remove obsolete +build lines (#4175) 2022-05-17 14:46:53 +07:00
rpchelper add eth_getFilterLogs, fix filter subscription ids (#6514) 2023-02-06 10:18:10 +07:00
services reference hash, address, and chain config from lib (#6536) 2023-01-13 18:12:18 +00:00
shards reference hash, address, and chain config from lib (#6536) 2023-01-13 18:12:18 +00:00
snapshotsync nil ptr in delete ancient (#7081) 2023-03-11 05:46:32 +00:00
stages remove PeerUseless calls (#7032) 2023-03-06 18:59:14 +00:00
testlog move all packages from "internal" folder - to simplify users live (#5857) 2022-10-25 09:58:25 +07:00
transactions Fix nil pointer panic in tracing (#7000) 2023-03-02 10:34:29 +00:00
trie Delete retain_list_builder.go (#7096) 2023-03-14 00:02:07 +00:00
README.md Rename to Erigon (#2018) 2021-05-26 11:35:39 +01:00

Erigon-API

Erigon-API is a set of tools for building applications containing Erigon node.

Our own binary erigon is built using it.

Modules

  • cli - erigon-cli, methods & helpers to run a CLI app with Erigon node.

  • node - represents an Ethereum node, running devp2p and sync and writing state to the database.

  • stagedsync - staged sync algorithm.

Examples

  • erigon - our binary is using erigon-api with all defaults

  • erigoncustom - a very simple example of adding a custom stage, a custom bucket and a custom command-line parameter

  • erigon-examples - a series of examples for Erigon api