- 29 Jun, 2022 6 commits
-
-
Seungbae.yu authored
-
lightclient authored
-
Andre Patta authored
-
aaronbuchwald authored
-
Ruohui Wang authored
-
Guillaume Ballet authored
-
- 28 Jun, 2022 2 commits
-
-
zeim839 authored
This adds a new flag to set the discovery port to be different from the TCP listener port. Co-authored-by:
Felix Lange <fjl@twurst.com>
-
Marius van der Wijden authored
-
- 27 Jun, 2022 2 commits
-
-
willian.eth authored
This change updates our urfave/cli dependency to the v2 branch of the library. There are some Go API changes in cli v2: - Flag values can now be accessed using the methods ctx.Bool, ctx.Int, ctx.String, ... regardless of whether the flag is 'local' or 'global'. - v2 has built-in support for flag categories. Our home-grown category system is removed and the categories of flags are assigned as part of the flag definition. For users, there is only one observable difference with cli v2: flags must now strictly appear before regular arguments. For example, the following command is now invalid: geth account import mykey.json --password file.txt Instead, the command must be invoked as follows: geth account import --password file.txt mykey.json
-
lightclient authored
all: remove public field from rpc.API
-
- 25 Jun, 2022 1 commit
-
-
lightclient authored
Co-authored-by:
Felix Lange <fjl@twurst.com>
-
- 24 Jun, 2022 2 commits
-
-
lightclient authored
The error was introduced in PR #21686, but there is no good reason to enforce sync in this method, and it causes issues with EL/CL integration.
-
int88 authored
-
- 23 Jun, 2022 2 commits
-
-
Sina Mahmoodi authored
This changes the []byte <-> Uint8Array conversion to use an ArrayBuffer, avoiding inefficient copying of the slice data in Goja. Co-authored-by:
Felix Lange <fjl@twurst.com>
-
ucwong authored
Co-authored-by:
Felix Lange <fjl@twurst.com>
-
- 22 Jun, 2022 2 commits
-
-
aaronbuchwald authored
Fix typo in txPool truncateQueue comment
-
rjl493456442 authored
* miner: retrieve mining state from live database * eth/catalyst: ignore stale fcu events from cl
-
- 21 Jun, 2022 4 commits
-
-
Zachinquarantine authored
-
Sina Mahmoodi authored
* cmd/geth: drop js command * cmd: simplify ipc path determination for attach * Add deprecation warning for js * rm testdata for exec * fix account unlock test cases * Update cmd/geth/consolecmd.go Co-authored-by:
Martin Holst Swende <martin@swende.se> * fix Co-authored-by:
Martin Holst Swende <martin@swende.se>
-
lightclient authored
* internal/ethapi: rename PublicEthereumAPI to EthereumAPI * eth: rename PublicEthereumAPI to EthereumAPI * internal/ethapi: rename PublicTxPoolAPI to TxPoolAPI * internal/ethapi: rename PublicAccountAPI to EthereumAccountAPI * internal/ethapi: rename PrivateAccountAPI to PersonalAccountAPI * internal/ethapi: rename PublicBlockChainAPI to BlockChainAPI * internal/ethapi: rename PublicTransactionPoolAPI to TransactionAPI * internal/ethapi: rename PublicDebugAPI to DebugAPI * internal/ethapi: move PrivateDebugAPI methods to DebugAPI * internal/ethapi: rename PublicNetAPI to NetAPI * les: rename PrivateLightServerAPI to LightServerAPI * les: rename PrivateLightAPI to LightAPI * les: rename PrivateDebugAPI to DebugAPI * les: rename PublicDownloaderAPI to DownloaderAPI * eth,les: rename PublicFilterAPI to FilterAPI * eth: rename PublicMinerAPI to MinerAPI * eth: rename PublicDownloaderAPI to DownloaderAPI * eth: move PrivateMinerAPI methods to MinerAPI * eth: rename PrivateAdminAPI to AdminAPI * eth: rename PublicDebugAPI to DebugAPI * eth: move PrivateDebugAPI methods to DebugAPI * node: rename publicAdminAPI to adminAPI * node: move privateAdminAPI methods to adminAPI * node: rename publicWeb3API to web3API * eth,internal/ethapi: sync comments with previous renamings
-
aaronbuchwald authored
Decrease children size instead of dirties size when marking dirties as cleaned up in trie cleaner
-
- 20 Jun, 2022 4 commits
-
-
Zachinquarantine authored
cmd/faucet: Add Sepolia network support to faucet
-
Sina Mahmoodi authored
-
Zachinquarantine authored
* cmd/faucet: Add error message for private posts Fixes #22631 * grammar
-
Martin Holst Swende authored
-
- 16 Jun, 2022 2 commits
-
-
Martin Holst Swende authored
The oss-fuzz engine crashes due to stack overflow decoding a large nested structure into a interface{}. This PR limits the size of the input data, so should avoid such crashes.
-
Kosuke Taniguchi authored
Co-authored-by:
Felix Lange <fjl@twurst.com>
-
- 15 Jun, 2022 6 commits
-
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Marius van der Wijden authored
Co-authored-by:
Felix Lange <fjl@twurst.com>
-
Marius van der Wijden authored
* cmd/geth, params: implement Gray Glacier (EIP-5133) * cmd/evm: add gray glacier tests * params: nitpicks * params: fixes
-
rjl493456442 authored
The new protocol version removes support for GetNodeData. See https://eips.ethereum.org/EIPS/eip-4938 for more information. Co-authored-by:
Felix Lange <fjl@twurst.com> Co-authored-by:
Martin Holst Swende <martin@swende.se>
-
lightclient authored
eth: add missing periods on end of comments
-
- 14 Jun, 2022 5 commits
-
-
lmittmann authored
minor performance improvement: `big.NewInt(0).Xxx` -> `new(big.Int).Xxx`
-
Marius van der Wijden authored
* common: improve pretty duration regex * common: improve pretty duration regex
-
s7v7nislands authored
-
lightclient authored
-
Ivan Aracki authored
-
- 13 Jun, 2022 1 commit
-
-
Martin Holst Swende authored
This enables the following linters - typecheck - unused - staticcheck - bidichk - durationcheck - exportloopref - gosec WIth a few exceptions. - We use a deprecated protobuf in trezor. I didn't want to mess with that, since I cannot meaningfully test any changes there. - The deprecated TypeMux is used in a few places still, so the warning for it is silenced for now. - Using string type in context.WithValue is apparently wrong, one should use a custom type, to prevent collisions between different places in the hierarchy of callers. That should be fixed at some point, but may require some attention. - The warnings for using weak random generator are squashed, since we use a lot of random without need for cryptographic guarantees.
-
- 10 Jun, 2022 1 commit
-
-
Gustavo Silva authored
core: fix typos
-