Alfie John
9ee6809ff4
core/txpool/blobpool: fix typos
2024-01-15 21:45:14 +02:00
牛晓婕
18e154eaa2
eth: fix potential hang in waitSnapExtension ( #28744 )
...
This should fix a rare hang in waitSnapExtension during shutdown.
2024-01-15 15:32:03 +01:00
hyunchel
7596db5f48
ethclient: add tests for TransactionInBlock ( #28283 )
...
Co-authored-by: Felix Lange <fjl@twurst.com>
2024-01-15 11:10:26 +01:00
Martin HS
89ccc680da
tests: update reference tests ( #28778 )
...
Updates the reference tests to the latest version
2024-01-15 09:15:40 +01:00
Felix Lange
1485814f89
cmd/rlpdump: add -pos flag, displaying byte positions ( #28785 )
2024-01-14 12:32:48 +01:00
Darioush Jalali
29b73555ae
core/state: unexport GetOrNewStateObject ( #28804 )
2024-01-14 12:32:23 +01:00
Chen Kai
507576e905
Merge branch 'ethereum:master' into portal
2024-01-13 23:11:05 +08:00
Sina Mahmoodi
407f779c8e
internal/ethapi: avoid using pending for defaults ( #28784 )
...
Given the discussions around deprecating pending (see #28623 or ethereum/execution-apis#495 ), we can move away from using the pending block internally, and use latest instead
2024-01-12 19:59:36 +01:00
ddl
1335ba5f28
p2p/dnsdisc: use strings.Cut over strings.IndexByte ( #28787 )
2024-01-12 19:57:47 +01:00
Sina Mahmoodi
a608c0ac84
cmd/devp2p/internal/ethtest: skip large tx test on github build ( #28794 )
...
This test was failling consistently on the github 32-bit build probably due to slow IO. Skipping it for that green check.
2024-01-12 15:14:03 +01:00
Péter Szilágyi
43ba7d65a8
cmd/geth, internal/debug: get rid of by-default log config ( #28801 )
2024-01-12 15:59:03 +02:00
Péter Szilágyi
065f82a8cc
accounts, ethclient: minor tweaks on the new simulated backend ( #28799 )
...
* accounts, ethclient: minor tweaks on the new simulated backend
* ethclient/simulated: add an initial batch of gas options
* accounts, ethclient: remove mandatory gasLimit constructor param
* accounts, ethclient: minor option naming tweaks
2024-01-12 15:58:49 +02:00
drstevenbrule
7280a5b31a
build: fix typo in comment ( #28800 )
2024-01-12 14:22:45 +01:00
vuittont60
ae4ea047e3
cmd: fix typos ( #28798 )
2024-01-12 10:40:00 +02:00
HAOYUatHZ
6e235c0833
eth: minor change of config-accessor ( #28782 )
...
eth: refactor `GetVM`
2024-01-12 08:06:22 +01:00
drstevenbrule
5c2de7fcbe
docs: fix badge in README ( #28796 )
...
* Fix broken badge in README.md
Replaced broken Github link with IPFS link for long-term storage.
* update go badge
Co-authored-by: lightclient <14004106+lightclient@users.noreply.github.com>
---------
Co-authored-by: lightclient <14004106+lightclient@users.noreply.github.com>
2024-01-12 07:43:52 +01:00
Péter Szilágyi
2e8b1187aa
params: begin v1.13.11 release cycle
2024-01-11 19:24:36 +02:00
Péter Szilágyi
a162091e8f
version: release v1.13.10 to fix bad tag
2024-01-11 19:17:54 +02:00
Felix Lange
daa2e5d6a6
params: begin v1.13.10 release cycle
2024-01-10 17:32:41 +01:00
Felix Lange
4f825318ea
params: go-ethereum v1.13.9 stable
2024-01-10 17:29:05 +01:00
Marius van der Wijden
2d08c99009
ethclient/simulated: implement new sim backend ( #28202 )
...
This is a rewrite of the 'simulated backend', an implementation of the ethclient interfaces
which is backed by a simulated blockchain. It was getting annoying to maintain the old
version of the simulated backend feature because there was a lot of code duplication with
the main client.
The new version is built using parts that we already have: an in-memory geth node instance
running in developer mode provides the chain, while the Go API is provided by ethclient.
A backwards-compatibility wrapper is provided, but the simulated backend has also moved to
a more sensible import path: github.com/ethereum/go-ethereum/ethclient/simulated
---------
Co-authored-by: Felix Lange <fjl@twurst.com>
Co-authored-by: Gary Rong <garyrong0905@gmail.com>
2024-01-10 16:45:08 +01:00
jwasinger
9e018ce3a5
cmd/geth: update log test data ( #28780 )
...
update logger test data
2024-01-09 15:35:49 +01:00
rjl493456442
d0edc5af4a
accounts/abi: fix bigInt topic encoding ( #28764 )
2024-01-09 14:55:09 +01:00
fearlseefe
30b71fd14b
refactor: use lookupworker
2024-01-09 17:09:38 +08:00
fearlseefe
c972aeda11
feat: use Lookup method
2024-01-09 17:09:38 +08:00
fearlseefe
6fbbe06767
fix: port conflict in test
2024-01-09 17:09:38 +08:00
fearlessfe
800ecad368
feat: finish contentLookup
2024-01-09 17:09:38 +08:00
fearlessfe
c0ac288ee7
faet: add content lookup test
2024-01-09 17:09:38 +08:00
Martin HS
1010a79c7c
cmd/geth: make it possible to autopilot removedb ( #28725 )
...
When managing geth, it is sometimes desirable to do a partial wipe; deleting state but retaining freezer data. A partial wipe can be somewhat tricky to accomplish.
This change implements the ability to perform partial wipe by making it possible to run geth removedb non-interactive, using command line options instead.
2024-01-09 08:56:01 +01:00
Marius van der Wijden
cfff3cbbf1
params, core/forkid: schedule cancun fork on goerli ( #28719 )
...
This PR schedules the cancun fork for the goerli testnet as discussed on ACD.
Spec: ethereum/execution-specs#860
We schedule:
goerli at 1705473120
2024-01-08 20:33:32 +01:00
vuittont60
f29520ffdf
cmd/devp2p/internal/ethtest: fix typos in comments ( #28772 )
2024-01-08 20:31:22 +01:00
ucwong
e7fa158086
eth/filters: fix early Unsubscribe of log events ( #28769 )
2024-01-08 20:18:30 +01:00
jwasinger
07b17f991b
log: emit error level string as "error", not "eror" ( #28774 )
2024-01-08 15:27:33 +01:00
ucwong
877d09443d
eth/downloader, eth/filters: use defer to call Unsubscribe ( #28762 )
2024-01-05 13:49:31 +01:00
Rossen Krastev
e3eeb64c94
ethclient: simplify error handling in TransactionReceipt ( #28748 )
...
Co-authored-by: Martin HS <martin@swende.se>
Co-authored-by: Felix Lange <fjl@twurst.com>
2024-01-04 16:32:23 +01:00
Marius Kjærstad
99eb49e601
internal/flags: update copyright year to 2024 ( #28760 )
...
Co-authored-by: Felix Lange <fjl@twurst.com>
2024-01-04 15:03:58 +01:00
Mario Vega
0b471c312a
cmd/evm: Fix blob-gas-used on invalid transactions in t8n ( #28734 )
...
cmd/evm: fixes the blob gas calculation if a transaction is invalid
2024-01-03 16:12:20 +01:00
Chen Kai
7499f1196c
Merge branch 'ethereum:master' into portal
2024-01-03 09:59:56 +08:00
fearlessfe
4c666e00b5
feat: remove test file
2024-01-02 21:40:09 +08:00
fearlseefe
7fb680502e
refactor: content storage
...
move ContentStorage interface to storage
2024-01-02 21:40:09 +08:00
Darioush Jalali
2365d77968
core/vm: update comments to match eip number ( #28743 )
2024-01-02 11:39:53 +01:00
ddl
33c94ef083
cmd/evm: fix link in README.md ( #28755 )
2024-01-02 11:37:22 +01:00
Felix Lange
c053eb71b6
log: avoid setting default slog logger in init ( #28747 )
...
slog.SetDefault has undesirable side effects. It also sets the default logger destination,
for example. So we should not call it by default in init.
2023-12-30 21:16:02 +01:00
Martin HS
76a5474b32
build: add support for ubuntu 23.10 (mantic minotaur) ( #28728 )
2023-12-30 17:02:48 +01:00
Chen Kai
2b89219371
Merge branch 'ethereum:master' into portal
2023-12-28 18:58:26 +08:00
Taeguk Kwon
09e0208029
accounts,signer: fix typos in comments ( #28730 )
2023-12-28 11:46:51 +01:00
Mario Vega
b5b70033e2
tests: add currentExcessBlobGas to state tests ( #28735 )
2023-12-28 11:39:28 +01:00
fearlessfe
f9f140c376
faet: add update test
2023-12-27 10:41:23 +08:00
cygaar
d2e3cb894b
core/state: logic equivalence for GetCodeHash ( #28733 )
2023-12-26 16:38:11 +08:00
thinkAfCod
c0ca1e4829
fix: lint checks
2023-12-26 10:54:22 +08:00