Péter Szilágyi

Results 106 issues of Péter Szilágyi

TL;DR: https://gist.github.com/karalabe/e106ac58afc1d611641e543312cf41e3 What we're interested in: - [ ] Figure out exactly what data is needed to create a block witness and how to pack it up and pass it...

The downloader package operates in two different modes currently: one driven by the engine API for post-merge networks and one driven by chain events for pre-merge networks. Whilst some code...

The miner package operates in two different modes currently: one driven by the engine API for post-merge networks and one driven by chain events for pre-merge networks. Whilst some code...

Hello, This is going be more of a brain dump than an issue report per say, perhaps consider it a features request. I only started looking into the project today,...

If I have a large binary blob embedded via go-bindata, the probability is fairly large to have a "misspelling" it it. Would be nice to ignore strings as until now....

The type of `syscall.Stdin` differs on Linux (`int`) and Windows (`syscall.Handle`). As such, any calling code needs to always cast `syscall.Stdin` to an integer to use it. But this gets...

Currently there seems to be no correlation between this package's `optional` tag and for example the json `omitempty` tag. I.e. if I specify a field in this package to be...

This is the update counterpart to https://github.com/ethereum/go-ethereum/pull/29681. The observation here is that storage objects are independent of one another, so they can be updated independently and hashed. Further, in this...

Tracker for https://github.com/ethereum/go-ethereum/pull/29509. Gas estimation should cap itself to the block gas limit if none is given, currently it caps itself to the configured call gas cap. This is bad...

type:bug

Since Geth v1.14 can only run in post-merge mode, we can just assume that all networks are like that and don't even bother with checking? Tho perhaps we can leave...

type:feature