- 25 May, 2023 2 commits
-
-
Delweng authored
* internal: replace noarg fmt.Errorf with errors.New Signed-off-by:
jsvisa <delweng@gmail.com> * tests: replace noarg fmt.Errorf with errors.New Signed-off-by:
jsvisa <delweng@gmail.com> * tests: go autoimport Signed-off-by:
jsvisa <delweng@gmail.com> * tests: go autoimport Signed-off-by:
jsvisa <delweng@gmail.com> --------- Signed-off-by:
jsvisa <delweng@gmail.com>
-
Delweng authored
Signed-off-by:
jsvisa <delweng@gmail.com>
-
- 24 May, 2023 3 commits
-
-
Delweng authored
Signed-off-by:
jsvisa <delweng@gmail.com>
-
Delweng authored
Signed-off-by:
jsvisa <delweng@gmail.com>
-
Delweng authored
Signed-off-by:
jsvisa <delweng@gmail.com>
-
- 23 May, 2023 4 commits
-
-
Martin Holst Swende authored
ethclient accepts certain negative block number values as specifiers for the "pending", "safe" and "finalized" block. In case of "pending", the value accepted by ethclient (-1) did not match rpc.PendingBlockNumber (-2). This wasn't really a problem, but other values accepted by ethclient did match the definitions in package rpc, and it's weird to have this one special case where they don't. To fix it, we decided to change the values of the constants rather than changing ethclient. The constant values are not otherwise significant. This is a breaking API change, but we believe not a dangerous one. --------- Co-authored-by:
Felix Lange <fjl@twurst.com>
-
Martin Holst Swende authored
implements the ability to run several state-tests in one instance. By not providing a statetest path to the `evm statetest` command, the path(s) will instead be read from `stdin`.
-
Park Changwan authored
fixes bug which caused the zero-address to be ignored during an iterative state-dump. --------- Co-authored-by:
Martin Holst Swende <martin@swende.se>
-
minh-bq authored
FlatCallTracer had a crasher when it was passed `onlyTopCall: true` as config. This PR ignores config fields inherited from the normal call tracer.
-
- 22 May, 2023 3 commits
-
-
Chawin Aiemvaravutigul authored
Adds `ErrorById` lookup
-
Sina Mahmoodi authored
Upgrades graphiql to v2.4.4. The interface has become much nicer, and there are extra features like tabs, history, dark mode etc. This change also now uses golang embed to bundle the resources. --------- Co-authored-by:
Martin Holst Swende <martin@swende.se>
-
Delweng authored
This change gives the cmd-tests have a bit more time to finish before getting forcibly torn down.
-
- 19 May, 2023 4 commits
-
-
Felix Lange authored
-
Shude Li authored
-
Martin Holst Swende authored
One difference between pebble and leveldb is that the latter returns error when performing Get on a closed database, the former does a panic. This may be triggered during shutdown (see #27237) This PR changes the pebble driver so we check that the db is not closed already, for several operations. It also adds tests to the db test-suite, so the previously implicit assumption of "not panic:ing at ops on closed database" is covered by tests.
-
Péter Szilágyi authored
-
- 17 May, 2023 6 commits
-
-
Shude Li authored
-
Felföldi Zsolt authored
* beacon/types: add beacon chain data types * beacon/merkle: added comments * go.mod: cleanups --------- Co-authored-by:
Péter Szilágyi <peterke@gmail.com>
-
Felix Lange authored
-
Stephen Guo authored
This changes the RPC server to ignore methods using *context.Context as parameter and *error as return value type. Methods with such types would crash the server when called.
-
Alex Mylonas authored
This change implements returning the address as EIP-55 encoded when creating a new account.
-
John Chase authored
-
- 16 May, 2023 4 commits
-
-
Martin Holst Swende authored
This PR adds a staleness-check to AccountRLP, before checking the bloom-filter and potentially going directly into the disklayer. --------- Co-authored-by:
rjl493456442 <garyrong0905@gmail.com>
-
Marius van der Wijden authored
* tests/fuzzers/bn256: scale gnark result by constant * tests/fuzzers/bn256: scale gnark result by constant
-
Delweng authored
-
joohhnnn authored
-
- 15 May, 2023 1 commit
-
-
oseau authored
rpc: the default dialer for websocket should respect the proxy environment variables like "HTTP_PROXY"
-
- 12 May, 2023 2 commits
-
-
Justin Traglia authored
Upgrade c-kzg-4844 to v0.2.0
-
Péter Szilágyi authored
-
- 11 May, 2023 7 commits
-
-
makcandrov authored
-
zhiqiangxu authored
* EstimateGas should use LatestBlockNumber by default * graphql: default to use latest for gas estimation --------- Co-authored-by:
Martin Holst Swende <martin@swende.se>
-
Exca-DK authored
-
rjl493456442 authored
-
Guillaume Ballet authored
-
ucwong authored
ethdb:init map with known size
-
Delweng authored
Signed-off-by:
jsvisa <delweng@gmail.com>
-
- 10 May, 2023 3 commits
-
-
Péter Szilágyi authored
* cryto/kzg4844: pull in the C and Go libs for KZG cryptography * go.mod: pull in the KZG libraries * crypto/kzg4844: add basic becnhmarks for ballpark numbers * cmd, crypto: integrate both CKZG and GoKZG all the time, add flag * cmd/utils, crypto/kzg4844: run library init on startup * crypto/kzg4844: make linter happy * crypto/kzg4844: push missing file * crypto/kzg4844: fully disable CKZG but leave in the sources * build, crypto/kzg4844, internal: link CKZG by default and with portable mode * crypto/kzg4844: drop verifying the trusted setup in gokzg * internal/build: yolo until it works? * cmd/utils: make flag description friendlier Co-authored-by:
Martin Holst Swende <martin@swende.se> * crypto/ckzg: no need for double availability check * build: tiny flag cleanup nitpick --------- Co-authored-by:
Martin Holst Swende <martin@swende.se>
-
ucwong authored
-
Seungbae Yu authored
-
- 09 May, 2023 1 commit
-
-
ucwong authored
event: initialize maps with known size
-