go-ethereum icon indicating copy to clipboard operation
go-ethereum copied to clipboard

Go implementation of the Ethereum protocol

Results 848 go-ethereum issues
Sort by recently updated
recently updated
newest added

mainly to pull in https://github.com/Consensys/gnark-crypto/pull/693 for those interested to check out the diff https://github.com/consenSys/gnark-crypto/compare/v0.16.0..v0.18.0

#### System information Geth version: latest main geth CL client & version: blsync OS & Version: Windows #### Expected behaviour After providing a valid checkpoint and a working beacon API...

type:bug

# Rationale **Why should this feature exist? / Use-case** AFAIK (and I hope to be wrong), it's not possible to know which blob transactions you've sent from your account using...

type:feature

This pull request reduces the threshold for triggering compaction at level0, leading to less compaction debt. This change is helpful in the case of heavy write-load, mitigating the case of...

build: upgrade -dlgo version to Go 1.24.4

Will keep adding more as they come up. 1. go-ethereum - https://github.com/ethereum/go-ethereum/pull/31875 - https://github.com/ethereum/go-ethereum/pull/31878 - https://github.com/ethereum/go-ethereum/pull/31909 - https://github.com/ethereum/go-ethereum/pull/31911 - https://github.com/ethereum/go-ethereum/pull/31953 - https://github.com/ethereum/go-ethereum/pull/31962 - https://github.com/ethereum/go-ethereum/pull/32034 - [ ] Bump bloomfilter to...

This pull request is part-1 for shipping the core part of archive node over path mode. These following things have been implemented: - state history index definition - state history...

pbss-archive
post-prague

Hi, I found out by static analysis that: In the rpcstack.go file, there is a potential data race risk related to the h.ttpConfig field. Specifically:The h.httpConfig field is read/written 6...

#### System information geth version 1.15.12-unstable-3f7b8bc9-20250526 Lighthouse v7.0.1-e42406d Ubuntu 24.04 #### Expected behaviour debug_traceCall is expected to accurately predict gasUsed for any transaction. #### Actual behaviour debug_traceCall inaccurately estimates gasUsed...

type:bug

Hey there, I looked into the issue you flagged in rpcstack.go, there was a race condition on h.httpConfig due to an unguarded read on line 212. Here’s how I resolved...