meowsbits
meowsbits
The `cmd/faucet/main.go` program currently uses the standard lib `flag` package, while other programs -- notably `cmd/geth` -- use `gopkg.in/urfave/cli.v1`. The faucet program could be improved by using the `urfave` package....
#### System information ``` > ./build/bin/geth version CoreGeth Version: 1.11.22-unstable Git Commit: f63ac8285f3d543a19c0625c3151857292b93383 Git Commit Date: 20210119 Architecture: amd64 Protocol Versions: [65 64 63] Go Version: go1.15.5 Operating System: linux...
We'll want to merge it. Would be nice to have an automatic notification and ticket for it.
`geth` accepts a flag `--config` which gets marshaled into a special data type. https://github.com/ethereum/go-ethereum/blob/master/eth/config.go#L90 Maybe also supported should be an `--config.flags` path which would provide a direct mapping for a...
Migrated from: https://github.com/etclabscore/multi-geth-fork/issues/67 Original author: @meowsbits --- this needs improving: https://github.com/etclabscore/multi-geth/blob/master/cmd/utils/flags.go#L1567-L1623 having "hardcoded" switches for default chain configs everywhere is too complex and too redundant and leaves too many opportunities...
Migrated from: https://github.com/etclabscore/multi-geth-fork/issues/102 Original author: @meowsbits --- `puppeth` uses it.
Migrated from: https://github.com/etclabscore/multi-geth-fork/issues/138 Original author: @meowsbits --- ECIP1078 proposes to Disable EIP2200. Disabling features happens more rarely than enabling them, but this will not be the first case (nor likely...
#### System information ``` > ./build/bin/geth version CoreGeth Version: 1.11.17-unstable Git Commit: 03674af77969206efbb7cd009e84e02cb2c9dabc Git Commit Date: 20201106 Architecture: amd64 Protocol Versions: [65 64 63] Go Version: go1.15 Operating System: linux...
Migrated from: https://github.com/etclabscore/multi-geth-fork/issues/130 Original author: @meowsbits --- Here's an example of one. I believe there are others. --- ### System and Version Info - OS: Ubuntu 18.04.3 LTS (bionic) -...
Rel #66 - [ ] Cases where the return type is ambiguous, like `map[string]interface{}`, can only get reflected to very basic schema types, like `object`, which doesn't provide much value...