- 05 Jan, 2021 7 commits
-
-
jk-jeongkyun authored
-
Marius van der Wijden authored
Solidity 0.8.0 changes the way that output is marshalled. This patch allows to parse both the legacy format used previously and the new format. See also https://docs.soliditylang.org/en/breaking/080-breaking-changes.html#interface-changes
-
Marius van der Wijden authored
* cmd/geth: added --mainnet flag * cmd/utils: set default genesis if --mainnet is specified * cmd/utils: addressed comments
-
Antoine Toulme authored
This changes the JSON encoding of blocks returned by the API to have decimal instead of hexadecimal numbers. The spec wants it this way. Co-authored-by:
Martin Holst Swende <martin@swende.se>
-
Guillaume Ballet authored
-
Martin Holst Swende authored
This PR removes a logic in the miner, which was originally intended to help temporary testnets based on ethash from "running off into the future". If the difficulty was low, and a few computers started mining several blocks per second, the ethash rules (which demand 1s delay between blocks) would push the blocktimes further and further away. The solution was to make the miner sleep while this happened. Nowadays, this problem is solved instead by PoA chains, and it's recommended to let testnets and devnets be based on clique instead. The existing logic is problematic, since it can cause stalls within the miner making it difficult for remote workers to submit work if the channel is blocked on a sleep. Credits to Saar Tochner for reporting this via the bug bounty
-
Péter Szilágyi authored
cmd: support v1.1 Twitter API in faucet, fix puppeth
-
- 04 Jan, 2021 6 commits
-
-
Péter Szilágyi authored
-
Suriyaa Sundararuban authored
Add links to go-ethereum's GitHub release page. Co-authored-by:
Felix Lange <fjl@twurst.com>
-
rene authored
-
Suriyaa Sundararuban authored
-
Vie authored
-
Melvin Junhee Woo authored
-
- 30 Dec, 2020 1 commit
-
-
yumiel yoomee1313 authored
closes #22049
-
- 27 Dec, 2020 9 commits
-
-
ucwong authored
-
Suriyaa Sundararuban authored
-
jk-jeongkyun authored
-
Suriyaa Sundararuban authored
-
Suriyaa Sundararuban authored
-
Suriyaa Sundararuban authored
-
Martin Holst Swende authored
-
Sina Mahmoodi authored
* eth/tracers: share tx gas price with js tracer * eth/tracers: use `go generate` * eth/tracers: try with another version of go-bindata * eth/tracers: export txGas * eth, eth/tracers: pass intrinsic gas to js tracers eth/tracers: include tx gas in tracers usedGas eth/tracers: fix prestate tracer's sender balance eth/tracers: rm unnecessary import eth/tracers: pass intrinsicGas separately to tracer eth/tracers: fix tests broken by lack of txdata eth, eth/tracers: minor fix * eth/tracers: regenerate assets + unexport test-struct + add testcase * eth/tracers: simplify tests + make table-driven Co-authored-by:
Guillaume Ballet <gballet@gmail.com> Co-authored-by:
Martin Holst Swende <martin@swende.se>
-
Timo Tijhof authored
The legacy dot-org URL was displaying a message about the repository having migrated to the dot-com service, which now covers open-source projects as well.
-
- 23 Dec, 2020 2 commits
-
-
Martin Holst Swende authored
* common,crypto: move fuzzers out of core * fuzzers: move vm fuzzer out from core * fuzzing: rework cover package logic * fuzzers: lint
-
Marius van der Wijden authored
During the snap and eth refactor, the net_version rpc call was falsely deprecated. This restores the net_version RPC handler as most eth2 nodes and other software depend on it.
-
- 21 Dec, 2020 2 commits
- 17 Dec, 2020 1 commit
-
-
Marius van der Wijden authored
-
- 15 Dec, 2020 2 commits
-
-
Felföldi Zsolt authored
* les: allow tx unindexing in les/4 light server mode * les: minor fixes * les: more small fixes * les: add meaningful constants for recentTxIndex handshake field
-
Martin Holst Swende authored
-
- 14 Dec, 2020 3 commits
-
-
Mr-Leshiy authored
-
Marius van der Wijden authored
-
Péter Szilágyi authored
This commit splits the eth package, separating the handling of eth and snap protocols. It also includes the capability to run snap sync (https://github.com/ethereum/devp2p/blob/master/caps/snap.md) , but does not enable it by default. Co-authored-by:
Marius van der Wijden <m.vanderwijden@live.de> Co-authored-by:
Martin Holst Swende <martin@swende.se>
-
- 12 Dec, 2020 2 commits
-
-
Shiming authored
* doc: clarify abigen alias flag usage update the `abigen --alias` flag help info, give an example to make it more clear related issue: https://github.com/ethereum/go-ethereum/issues/21846 * Update cmd/abigen/main.go Co-authored-by:
ligi <ligi@ligi.de> Co-authored-by:
Martin Holst Swende <martin@swende.se> Co-authored-by:
ligi <ligi@ligi.de>
-
Connor Stein authored
Fixes the template used when generating code, which in some scenarios would lead to panic instead of returning an error.
-
- 11 Dec, 2020 5 commits
-
-
Martin Holst Swende authored
This PR implements unclean shutdown marker. Every time geth boots, it adds a timestamp to a list of timestamps in the database. This list is capped at 10. At a clean shutdown, the timestamp is removed again. Thus, when geth exits unclean, the marker remains, and at boot up we show the most recent unclean shutdowns to the user, which makes it easier to diagnose root-causes to certain problems. Co-authored-by:
Nagy Salem <me@muhnagy.com>
-
Mr-Leshiy authored
-
Martin Holst Swende authored
This PR adds re-written difficulty calculators, which are based on uint256. It also adds a fuzzer + oss-fuzz integration for the new fuzzer. It does differential fuzzing between the new and old calculators. Note: this PR does not actually enable the new calculators.
-
gary rong authored
* core: separate the local notion from the pricedHeap * core: add benchmarks * core: improve tests * core: address comments * core: degrade the panic to error message * core: fix typo * core: address comments * core: address comment * core: use PEAK instead of POP * core: address comments
-
Mudit Gupta authored
This PR adds support for using Twitter API to query the tweet and author details. There are two reasons behind this change: - Twitter will be deprecating the legacy website on 15th December. The current method is expected to stop working then. - More importantly, the current system uses Twitter handle for spam protection but the Twitter handle can be changed via automated calls. This allows bots to use the same tweet to withdraw funds infinite times as long as they keep changing their handle between every request. The Rinkeby as well as the Goerli faucet are being actively drained via this method. This PR changes the spam protection to be based on Twitter IDs instead of usernames. A user can not change their Twitter ID.
-