- Oct 06, 2020
-
-
Péter Szilágyi authored
# Conflicts: # params/version.go
-
rene authored
This change adds a test framework for the "eth" protocol and some basic tests. The tests can be run using the './devp2p rlpx eth-test' command. # Conflicts: # core/forkid/forkid.go # eth/discovery.go # eth/handler.go # eth/helper_test.go # eth/protocol_test.go
-
Péter Szilágyi authored
-
rene authored
# Conflicts: # cmd/devp2p/internal/ethtest/suite.go
-
rene authored
# Conflicts: # cmd/devp2p/internal/ethtest/suite.go
-
Marius van der Wijden authored
* tried to fix * fix for js api * fix for nil pointer ex * rev space * rev space * input call formatter
-
gary rong authored
* trie: support non-existent right proof * trie: improve test * trie: minor linter fix Co-authored-by:
Péter Szilágyi <peterke@gmail.com> # Conflicts: # trie/proof.go # trie/proof_test.go
-
Marius van der Wijden authored
This allows users to estimate gas on top of arbitrary blocks as well as pending and latest. Tracing on pending is useful for most users as it takes into account the current txpool while tracing on latest might be useful for users that have little to know knowledge of the current transactions in the network. If blockNrOrHash is not specified, estimateGas defaults to pending
-
gary rong authored
# Conflicts: # trie/proof.go # trie/proof_test.go
-
gary rong authored
# Conflicts: # trie/proof_test.go
-
Binacs authored
# Conflicts: # cmd/geth/retesteth.go # cmd/utils/flags.go
-
rene authored
This change moves the RLPx protocol implementation into a separate package, p2p/rlpx. The new package can be used to establish RLPx connections for protocol testing purposes. Co-authored-by:
Felix Lange <fjl@twurst.com> # Conflicts: # p2p/rlpx/rlpx.go # p2p/rlpx/rlpx_test.go # p2p/server_test.go
-
Marius van der Wijden authored
* (mobile): Adds string representations for types * mobile: better interfaces add stringer to types Co-authored-by:
sarath <sarath@melvault.com> # Conflicts: # go.mod # go.sum # mobile/common.go # mobile/geth.go # mobile/types.go
-
Osoro Bironga authored
* accounts: abi/bid/backends; cleaned doc errors, camelCase refactors and anonymous variable assignments * acounts/abi/bind: doc errors, anonymous parameter assignments * accounts/abi: doc edits, camelCase refactors * accounts/abi/bind: review fix * reverted name changes * name revert Co-authored-by:
Osoro Bironga <osoro@doctaroo.com>
-
Guillaume Ballet authored
# Conflicts: # core/block_validator.go
-
Péter Szilágyi authored
# Conflicts: # eth/downloader/downloader.go
-
Giuseppe Bertone authored
* database: added counters * Improved stats for ancient db * Small improvement * Better message and added percentage while counting receipts * Fast counting for receipts * added info message * Show both receips itemscount from ancient db and counted receipts * Fixed default case * Removed counter for receipts in ancient store * Removed counting of receipts present in leveldb # Conflicts: # core/rawdb/database.go
-
Marius van der Wijden authored
* cmd/utils: use preconfigured testnet flags instead of networkid * cmd/utils: shorter description Co-authored-by:
Martin Holst Swende <martin@swende.se> * Update flags.go Co-authored-by:
Martin Holst Swende <martin@swende.se> # Conflicts: # cmd/utils/flags.go
-
Marius van der Wijden authored
* tests/fuzzers/abi: added abi fuzzer * accounts/abi: fixed issues found by fuzzing * tests/fuzzers/abi: update fuzzers, added repro test * tests/fuzzers/abi: renamed abi_fuzzer to abifuzzer * tests/fuzzers/abi: updated abi fuzzer * tests/fuzzers/abi: updated abi fuzzer * accounts/abi: minor style fix * go.mod: added go-fuzz dependency * tests/fuzzers/abi: updated abi fuzzer * tests/fuzzers/abi: make linter happy * tests/fuzzers/abi: make linter happy * tests/fuzzers/abi: comment out false positives # Conflicts: # go.mod # go.sum
-
gary rong authored
# Conflicts: # les/lespay/server/clientdb.go
-
Vinod Damle authored
* Allow setting PetersburgBlock before chainhead if it is at the same block as ConstantinopleBlock * Add a negative test
-
Mason Fischer authored
It didn't actually work because it called a method that doesn't exist. This fixes it also adds a test. Co-authored-by:
Felix Lange <fjl@twurst.com>
-
Giuseppe Bertone authored
# Conflicts: # core/blockchain.go # core/rawdb/accessors_indexes.go # core/rawdb/accessors_indexes_test.go # core/rawdb/chain_iterator.go # light/txpool.go
-
Kirill Elagin authored
When the license was added to the repository, its text was changed (some sections at the end removed) and, worse, the authors of go-ethereum tried to claim copyright on the license text. The correct way to apply GPL to a project is to copy it verbatim. This change reverts the text of the GPL to the original.
-
Martin Holst Swende authored
# Conflicts: # eth/tracers/internal/tracers/assets.go
-
Felföldi Zsolt authored
* les, les/lespay/server: refactor client pool * les: use ns.Operation and sub calls where needed * les: fixed tests * les: removed active/inactive logic from peerSet * les: removed active/inactive peer logic * les: fixed linter warnings * les: fixed more linter errors and added missing metrics * les: addressed comments * cmd/geth: fixed TestPriorityClient * les: simplified clientPool state machine * les/lespay/server: do not use goroutine for balance callbacks * internal/web3ext: fix addBalance required parameters * les: removed freeCapacity, always connect at minCapacity initially * les: only allow capacity change with priority status Co-authored-by:
rjl493456442 <garyrong0905@gmail.com> # Conflicts: # cmd/geth/les_test.go # les/api.go # les/api_test.go # les/clientpool.go # les/clientpool_test.go # les/metrics.go # les/peer.go # les/server.go # les/server_handler.go # les/test_helper.go # les/utils/expiredvalue.go
-
Felix Lange authored
This can be useful when working with raw RLP data.
-
Julian Koh authored
-
Felföldi Zsolt authored
This PR adds an extra guarantee to NodeStateMachine: it ensures that all immediate effects of a certain change are processed before any subsequent effects of any of the immediate effects on the same node. In the original version, if a cascaded change caused a subscription callback to be called multiple times for the same node then these calls might have happened in a wrong chronological order. For example: - a subscription to flag0 changes flag1 and flag2 - a subscription to flag1 changes flag3 - a subscription to flag1, flag2 and flag3 was called in the following order: [flag1] -> [flag1, flag3] [] -> [flag1] [flag1, flag3] -> [flag1, flag2, flag3] This happened because the tree of changes was traversed in a "depth-first order". Now it is traversed in a "breadth-first order"; each node has a FIFO queue for pending callbacks and each triggered subscription callback is added to the end of the list. The already existing guarantees are retained; no SetState or SetField returns until the callback queue of the node is empty again. Just like before, it is the responsibility of the state machine design to ensure that infinite state loops are not possible. Multiple changes affecting the same node can still happen simultaneously; in this case the changes can be interleaved in the FIFO of the node but the correct order is still guaranteed. A new unit test is also added to verify callback order in the above scenario. # Conflicts: # les/serverpool.go # p2p/nodestate/nodestate.go # p2p/nodestate/nodestate_test.go
-
Shude Li authored
# Conflicts: # Dockerfile # Dockerfile.alltools
-
Guillaume Ballet authored
-
Marius van der Wijden authored
Fixes a regression introduced in #21536
-
Marius van der Wijden authored
This PR changes several different things: - Adds test cases for the miner loop - Stops the worker if it wasn't already stopped in worker.Close() - Uses channels instead of atomics in the miner.update() loop Co-authored-by:
Felix Lange <fjl@twurst.com> # Conflicts: # miner/miner.go
-
Guillaume Ballet authored
* cmd/geth: print warning when whisper config is present in toml * Update cmd/geth/config.go Co-authored-by:
Martin Holst Swende <martin@swende.se> # Conflicts: # cmd/geth/config.go
-
Dan Sosedoff authored
This adds a new client method BlockNumber to fetch the most recent block number of the chain.
-
Shude Li authored
# Conflicts: # go.mod
-
Martin Holst Swende authored
* core/vm/testdata: add gascost expectations to testcases * core/vm: verify expected gas in tests for precompiles * core/vm: fix overflow flaw in gas/s calculation
-
gary rong authored
* cmd, eth: offer maxprice flag for overwritting price cap * eth: rename default price cap # Conflicts: # cmd/geth/main.go # cmd/geth/usage.go # cmd/utils/flags.go # eth/gasprice/gasprice.go
-
Marius van der Wijden authored
# Conflicts: # accounts/abi/bind/backends/simulated.go
-
Péter Szilágyi authored
# Conflicts: # eth/downloader/downloader.go # eth/downloader/downloader_test.go
-