diff --git a/pull-requests/hyperledger/besu.md b/pull-requests/hyperledger/besu.md index 1623e1f73..c700d57ac 100644 --- a/pull-requests/hyperledger/besu.md +++ b/pull-requests/hyperledger/besu.md @@ -145,147 +145,3 @@ Bump 23.10.1-RC to 23.10.1 on release branch -
- PR #6080 - | -- - Implement miner_setMinPriorityFee and miner_getMinPriorityFee - - | -
- doc-change-required - | -- ## PR description -Built on top of https://github.com/fab-10/besu/tree/min-priority-fee, which adds `--min-priority-fee` CLI option - -Adds two new JsonRPC methods: - -- miner_setMinPriorityFee - Sets the value of `miningParameters.minPriorityFeePerGas` -- miner_getMinPriorityFee - Returns the current value of `miningParameters.minPriorityFeePerGas` - -This PR does not add the transactionSelector based on `minPriorityFeePerGas`. It will be added in a different PR - -Examples: - -Example: -Request -`{"jsonrpc":"2.0","id":1,"method":"miner_setMinPriorityFee","params":[1]}` -Response: -``` -{ - "jsonrpc": "2.0", - "id": 1, - "result": true -} -``` -Invalid request: -` {"jsonrpc":"2.0","id":1,"method":"miner_setMinPriorityFee","params":[-1]} -`Response: -``` -{ - "jsonrpc": "2.0", - "id": 1, - "result": false -} -``` -Get method: -` {"jsonrpc":"2.0","id":1,"method":"miner_getMinPriorityFee","params":[]} -`Response: -``` -{ - "jsonrpc": "2.0", - "id": 1, - "result": 7 -} -``` - - - - - | -
- PR #6079 - | -- - Force tx replacement price bump to zero when zero base fee market is configured - - | -
- doc-change-required - | -- - - -## PR description - -This PR allows to replace txs on zero base fee markets, or on gas price network, where the txs have gas price set to zero (with `min-gas-price=0`). - -To achieve that we force the `tx-pool-price-bump=0` when the `zeroBaseFee:true` genesis option is present. -But this was not enough, since the transaction replacement rules were forcing the new price to be strictly greater than the price bump, that in my opinion is not intuitive, since for example if your existing tx has a gas price of 100, and the price bump is 10%, then we should accept a valid replacement a tx with a gas price of 110, and not 111 as it was before. -So the other change is to accept, as valid replacement, tx with a gas price greater than or equal to the price bump. This make also the `tx-pool-price-bump=0` case more intuitive, since you can replace a tx without increasing the gas price. - -`doc-change-required` to explain that if `zeroBaseFee:true` in the genesis, then `tx-pool-price-bump=0` is forced internally, and any attempt to specify a value for it results in an error - -## Fixed Issue(s) - - - -fixes #6043 - | -
- PR #6078 - | -- - ETC 'Spiral' network upgrade - - | -
- - | -- ## PR description -This PR adds support to [ECIP-1109](https://ecips.ethereumclassic.org/ECIPs/ecip-1109). -Block number is set to https://github.com/ethereumclassic/ECIPs/pull/514, already set in core-geth in https://github.com/etclabscore/core-geth/pull/571 -I also set the DNS discovery tree to what's in [core-geth#bootnodes_mordor.go](https://github.com/etclabscore/core-geth/blob/v1.12.14/params/bootnodes_mordor.go#L29) - | -
- PR #2830 - | -- - build(deps): bulk fix CVEs via dependency resolution overrides 2023-10-23 - - | -
- dependent - | -
- 1. Couldn't get rid of vulnerable versions in a couple of dependencies
-because the underlying dependencies have gone ESM only which is a blocker
-for us at the moment unfortunately.
-2. Swapped out the ubiquity TS client to a version of it that I self
-published onto npm after a full renovation of all of its dependencies.
-
-Depends on #2807 (because that one also has a couple of dependency bumps
-that are needed to eliminate the vulnerabilities)
-
-Fixes #2828
-Fixes #2544
-
-Signed-off-by: Peter Somogyvari |
-
- PR #4489 - | -- - Update docs on checkcommitreadiness with inspect flag - - | -
- - | -- - - - -#### Type of change - - - -- Documentation update - -#### Description - -This patch updates documents on `checkcommitreadiness` with `inspect` flag. - -#### Additional details - - - - -#### Related issues - - -Resolve #4428 - - - - - - | -