Official Go implementation of the Ethereum protocol
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gary rong
ecdbb402ee
trie: remove node ordering slice in sync batch ( #19929 )
...
When we flush a batch of trie nodes into database during the state
sync, we should guarantee that all children should be flushed before
parent.
Actually the trie nodes commit order is strict by: children -> parent.
But when we flush all ready nodes into db, we don't need the order
anymore since
(1) they are all ready nodes (no more dependency)
(2) underlying database provides write atomicity
5 years ago
..
downloader
trie: remove node ordering slice in sync batch ( #19929 )
5 years ago
fetcher
eth, les: add sanity checks for unbounded block fields ( #19573 )
6 years ago
filters
all: replace fmt.Print* calls with t.Log* in tests ( #19670 )
6 years ago
gasprice
cmd, core, eth, miner, params: configurable gas floor and ceil
7 years ago
tracers
core/vm, crypto/blake2b: add BLAKE2b compression func at 0x09
6 years ago
api.go
eth: disallow overwrite files via admin.exportChain
6 years ago
api_backend.go
internal/ethapi: support block number or hash on state-related methods ( #19491 )
5 years ago
api_test.go
eth: add debug_accountRange ( #17438 )
6 years ago
api_tracer.go
eth: fix storageRangeAt for empty blocks ( #18076 )
6 years ago
backend.go
eth: remove unused field ( #20049 )
5 years ago
bloombits.go
all: clean up and proerly abstract database access
6 years ago
config.go
acmd, core, eth, les: support --override.istanbul
6 years ago
enr_entry.go
core/forkid: implement the forkid EIP, announce via ENR ( #19738 )
6 years ago
gen_config.go
cmd, eth: fix dump config issue ( #19825 )
6 years ago
handler.go
core/forkid: implement the forkid EIP, announce via ENR ( #19738 )
6 years ago
handler_test.go
core/forkid: implement the forkid EIP, announce via ENR ( #19738 )
6 years ago
helper_test.go
all: on-chain oracle checkpoint syncing ( #19543 )
6 years ago
metrics.go
metrics: pull library and introduce ResettingTimer and InfluxDB reporter ( #15910 )
7 years ago
peer.go
core/forkid: implement the forkid EIP, announce via ENR ( #19738 )
6 years ago
protocol.go
core/forkid: implement the forkid EIP, announce via ENR ( #19738 )
6 years ago
protocol_test.go
eth: check for DefaultConfig.NetworkId in test ( #17599 )
6 years ago
sync.go
eth: fix sync bloom panic ( #19757 )
6 years ago
sync_test.go
all: new p2p node representation ( #17643 )
6 years ago