Péter Szilágyi
e8141e1685
Merge pull request #19873 from karalabe/author-1.9.1
...
all: update author list and licenses
5 years ago
Péter Szilágyi
82985075f7
Merge pull request #19872 from karalabe/cht-1.9.1
...
params: bump hard-coded CHTs to 22nd July values
5 years ago
Péter Szilágyi
b973eddd28
build: deduplicate same authors with different casing
5 years ago
Péter Szilágyi
1a83114c74
all: update author list and licenses
5 years ago
Péter Szilágyi
364e485e51
build: update license exclusions, case insensitive author list
5 years ago
Péter Szilágyi
28fea9c5af
params: bump hard-coded CHTs to 22nd July values
5 years ago
Christian Muehlhaeuser
57fc1d21e1
cmd/geth, core/rawdb: add missing error checks ( #19871 )
...
* Added missing error checks
Add error handling where we assign err a value, but don't check for it being nil.
* core/rawdb: tiny style nit
5 years ago
Kitten King
cc3ef1e4f4
cmd, crypto, eth, internals: fix Typos ( #19868 )
5 years ago
Christian Muehlhaeuser
5183483c53
core/state, p2p/discover, trie, whisper: avoid unnecessary conversions ( #19870 )
...
No need to convert these types.
5 years ago
Kurkó Mihály
a1f8549262
p2p: add ENR to PeerInfo ( #19816 )
5 years ago
Péter Szilágyi
e8c9579fb7
Merge pull request #19856 from karalabe/chaindb-property-fix
...
internal/ethapi: fix debug.chaindbProperty
5 years ago
Péter Szilágyi
433cb564e9
internal/ethapi: fix debug.chaindbProperty
5 years ago
Péter Szilágyi
8485f7cc7b
Merge pull request #19854 from karalabe/genesis-commit-check
...
core: check error before accessing potentially nil block
5 years ago
Péter Szilágyi
61a20cb56d
core: check error before accessing potentially nil block
5 years ago
Felix Lange
f088c650a5
all: replace t.Log(); t.FailNow() with t.Fatal() ( #19849 )
5 years ago
Guillaume Ballet
9466b9eec5
signer/core: fix reference issue in key derivation ( #19827 )
...
* signer/core: fix reference issue in key derivation
* Review feedback
5 years ago
大彬
4ac04ae0fe
all: replace fmt.Print* calls with t.Log* in tests ( #19670 )
5 years ago
gary rong
8f80cafa10
core: fix write concurrency in txpool ( #19835 )
...
* core: fix write coucurrency in txpool
* core: add rlock for pendingState read access
* core: address comments
5 years ago
David Chase
31a1f164d9
common/bitutil: use result of TestBytes to prevent dead code elimination ( #19846 )
...
Gollvm has very aggressive dead code elimination that completely
removes one of these two benchmarks. To prevent this, use the
result of the benchmark (a boolean), and to be "fair", make the
transformation to both benchmarks.
To be reliably assured of not removing the code, "use" means
assigning to an exported global. Non-exported globals and
//go:noinline functions are possibly subject to this optimization.
5 years ago
jwasinger
6bd896a97f
eth: add debug_accountRange ( #17438 )
...
This adds the debug_accountRange method which returns all accounts in
the state for a given block and transaction index.
5 years ago
cdetrio
49a7ee460e
eth: fix storageRangeAt for empty blocks ( #18076 )
5 years ago
gary rong
252150918c
cmd, eth: fix dump config issue ( #19825 )
...
* eth: fix error when dump config with nil checkpoint
* cmd/utils: ignore default datadir if it's already set.
5 years ago
Péter Szilágyi
72029f0f88
params: begin Geth v1.9.1 release cycle
5 years ago
Péter Szilágyi
52f2461774
params: release Geth v1.9.0
5 years ago
Péter Szilágyi
54d0eeb494
Merge pull request #19818 from rjl493456442/encap-les
...
cmd: encapsulate les relative cli options
5 years ago
Péter Szilágyi
c705aac826
cmd, eth, les: make les flags conform to dotted style
5 years ago
rjl493456442
c6a9616cfd
cmd: encapsulate les relative cli options
5 years ago
Péter Szilágyi
8c4bc4f7ef
Merge pull request #19814 from karalabe/ulc-fixup
...
cmd, eth, les: fix up ultra light config integration
5 years ago
Péter Szilágyi
e970d60d37
Merge pull request #19815 from karalabe/go-1.12.7
...
appveyor: bump builder to Go 1.12.7
5 years ago
Péter Szilágyi
2808bc68b9
appveyor: bump builder to Go 1.12.7
5 years ago
Péter Szilágyi
213690cdfd
cmd, eth, les: fix up ultra light config integration
5 years ago
Sheldon
7527215a68
core/state: fix random test args ( #19255 )
5 years ago
Péter Szilágyi
8c249cb82f
Merge pull request #19810 from karalabe/txpool-noncer
...
core: kill off managed state, use own tiny noncer for txpool
5 years ago
Péter Szilágyi
a966425a1d
core: kill off managed state, use own tiny noncer for txpool
5 years ago
Péter Szilágyi
5873c01c3d
Merge pull request #19807 from karalabe/cht
...
params: bump all CHTs, deploy all checkpoint oracles
5 years ago
Péter Szilágyi
1bed5afd92
params: bump all CHTs, deploy all checkpoint oracles
5 years ago
gary rong
16e313699f
cmd/puppeth: integrate blockscout ( #18261 )
...
* cmd/puppeth: integrate blockscout
* cmd/puppeth: expose debug namespace for blockscout
* cmd/puppeth: fix dbdir
* cmd/puppeth: run explorer in archive mode
* cmd/puppeth: ensure node is synced
* cmd/puppeth: fix explorer docker alignment + drop unneeded exec
* cmd/puppeth: polish up config saving and reloading
* cmd/puppeth: check both web and p2p port for explorer service
5 years ago
Felix Lange
fa538ee7ed
p2p/discover: improve randomness of ReadRandomNodes ( #19799 )
...
Make it select from all live nodes instead of selecting the heads of
random buckets.
5 years ago
Péter Szilágyi
983f92368b
core/forkid: implement the forkid EIP, announce via ENR ( #19738 )
...
* eth: chain config (genesis + fork) ENR entry
* core/forkid, eth: protocol independent fork ID, update to CRC32 spec
* core/forkid, eth: make forkid a struct, next uint64, enr struct, RLP
* core/forkid: change forkhash rlp encoding from int to [4]byte
* eth: fixup eth entry a bit and update it every block
* eth: fix lint
* eth: fix crash in ethclient tests
5 years ago
Felix Lange
cc0f0e27a6
p2p: remove "cap" enr entry ( #19800 )
...
This entry was an experiment, but we're moving on to the
entry-per-protocol instead.
5 years ago
gary rong
22060611fb
cmd/abigen: refactor command line interface ( #19797 )
...
* cmd, common: refactor abigen command line interface
* cmd/abigen: address comment
5 years ago
Martin Holst Swende
cdfe9a3a2a
eth, les: add sanity checks for unbounded block fields ( #19573 )
...
This PR adds some hardening in the lower levels of the protocol stack, to bail early on invalid data. Primarily, attacks that this PR protects against are on the "annoyance"-level, which would otherwise write a couple of megabytes of data into the log output, which is a bit resource intensive.
5 years ago
Guillaume Ballet
5bc9ccfa0a
accounts/abi/bind: link dependent libs in deploy ( #19718 )
...
* accounts, abigen: link dependent libs in deploy
* abigen: add java generation
* bind: Fix unit tests
* abigen: add unit test
* Fix CI
* Post-rebase fixes
* Fix rebase issue
* accounts/abi: Gary's review feedback
* accounts/abi: More Gary feedback
* accounts/abi: minor fixes
5 years ago
Martin Holst Swende
f2eb3b1c56
core: lessen mem-spike during 1.8->1.9 conversion ( #19610 )
...
* core/blockchain: lessen mem-spike during 1.8->1.9 conversion
* core/blockchain.go: make levedb->freezer conversion gradually
* core/blockchain: write the batch
5 years ago
Martin Holst Swende
7fd82a0e3e
p2p: add address info to peer event reporting ( #19716 )
5 years ago
Guillaume Ballet
dcc4adfcd7
cmd/geth: wrong memory size sanitizing on OpenBSD ( #19793 )
5 years ago
Guillaume Ballet
d9c75cd10e
accounts/abi/bind: fix typo in comments ( #19791 )
5 years ago
gary rong
6814797173
accounts, cmd, contracts, les: integrate clef for transaction signing ( #19783 )
...
* accounts, cmd, contracts, les: integrate clef for transaction signing
* accounts, cmd/checkpoint-admin, signer/core: minor fixups
5 years ago
gary rong
59a3198382
les: remove half-finished priority pool APIs ( #19780 )
...
* les: remove half-finish APIs
* les: remove half-finish APIs
5 years ago
Guillaume Ballet
8d2cf028a5
vendor: update karalabe/usb to fix CGO=0 builds ( #19790 )
5 years ago