Martin HS

Results 71 issues of Martin HS

The bidirectional channel was not working properly when a ruleset UI was used, which is fixed by this PR. Fixes #25298

status:triage

The code in this PR is written by @karalabe (I just moved a chunk of code a bit north) When we're generating the snapshot, we're also processing blocks. In case...

This PR adds https://github.com/holiman/uint256 to oss-fuzz. `uint256` is a 256-bit math library in golang, and is used primarily within the Ethereum ecosystem, by projects such as [go-ethereum](https://github.com/ethereum/go-ethereum) and [erigon](https://github.com/ledgerwatch/erigon)

On docker [hub](https://hub.docker.com/r/parity/parity/), there seems to be only `latest` and `stable` built with any regularity (aside from release-builds). Afaiu, they're built off [this](https://github.com/paritytech/parity-ethereum/blob/master/docker/hub/Dockerfile) dockerfile. I would be very greatful if...

F8-enhancement 🎊
P7-nicetohave 🐕
Q2-easy 💃
M0-build 🏗
A3-stale 🍃
hacktoberfest

With Metropolis, there will be a new opcode, `REVERT` (https://github.com/ethereum/EIPs/pull/206) and `RETURNDATA` (https://github.com/ethereum/EIPs/pull/211). The `REVERT` opcode will function as a `throw`, reverting state-changes, but will not burn the remaining gas....

This PR is a follow-up to https://github.com/syndtr/goleveldb/pull/385, and only the last two commits are "this PR". The first "this PR" commit contains a small command-line utility to run a set...

This is, ostensibly, a large PR. However, this PR contains no functional changes. ## Background When using go-leveldb in go-ethereum, we've often seen `memdb.findGE` pop up as a large node...

When the memory database does a search through the skiplist, it descends one level whenver it either finds that the list is ended, or that the comparison fails (we've passed...

When running go-ethereum as an archive node, the total amount of data stored in leveldb is extremely large. In this case, it contains roughly `5.4T` data, in ~`3M` ldb-files, and...

This PR replaces the `escapeString` function with the more stricter quoting done by `strconv`. Previously, special non-printable characters such as bash escape characters could be allowed through. Such characters can...