Antony Denyer
Antony Denyer
With the deprecation of bintray, jcenter etc will you be indexing any other repositories? Specifically, I'm interested in adding https://hyperledger.jfrog.io/ui/native/besu-maven/maven2 https://github.com/hyperledger/besu/issues/2102
Enable block rewards to be configurable ``` { "config": { ... "qbft": { "blockPeriodSeconds": 2, "blockReward": "5000000000000000" }, "transitions": [ { "block": , "blockReward": } ] }, ... } ```...
To make it easier for people to be able to configure qbft networks allow the specification of validators in config. ``` { "config": { ... "qbft": { "blockPeriodSeconds": 2, "validatorselectionmode":...
# Padded numerical strings are no longer accepted A bug was introduced in https://github.com/web3j/web3j/pull/1679 Whilst not producing a padded string may be desirable, you should certainly accept them. When calling...
### Description When you implement a command-line option with `CommandLine.Option(required=true)` in either Besu (ie in `BesuCommand`) or in a plugin Besu will fail to start if you do not specify...
### Description Some of the features that picocli offers have been deprecated, specifically `parseWithHandlers` has been superseded by CommandLine.execute since 4.0 Further information can be found [https://picocli.info/#_migration](https://picocli.info/#_migration) on how to...
#### Expected behaviour Mining to start #### Actual behaviour Mining doesn't start #### Steps to reproduce the behaviour ``` "config": { "chainId": 1337, "homesteadBlock": 0, "eip150Block": 0, "eip150Hash": "0x0000000000000000000000000000000000000000000000000000000000000000", "eip155Block":...
### 🌟 Feature Request #### 📝 Description Feature parity with geth https://github.com/ethereum/go-ethereum/issues/27800 #### 🤔 Rationale Currently, you can not perform an eth_estimateGas on something that isn't in the 'correct' state...
### 🌟 Feature Request #### 📝 Description Implement prestateTracer the same as what is available in [geth](https://geth.ethereum.org/docs/developers/evm-tracing/built-in-tracers) #### 🤔 Rationale This will allow us to perform better simulations for things...