Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into deneb
Browse files Browse the repository at this point in the history
  • Loading branch information
jframe committed Aug 16, 2023
2 parents 7140467 + c1c7538 commit defce89
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .java-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
17.0
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Next release
## 23.8.0

### Breaking Changes
- Use Java 17 for build and runtime. Remove Java 11 variant of docker image. zip/tar.gz distributions will require Java 17 or above to run Web3Signer.
Expand All @@ -17,7 +17,8 @@
- Add Azure bulk loading for secp256k1 keys in eth1 mode [#850](https://github.com/Consensys/web3signer/pull/850)
- Added Gnosis configuration for the 🦉 CAPELLA 🦉 network fork due at epoch 648704, UTC Tue 01/08/2023, 11:34:20 [#865](https://github.com/Consensys/web3signer/pull/865)
- Java 17 for build and runtime. [#870](https://github.com/Consensys/web3signer/pull/870)
- Add support for [Lukso](https://lukso.network/) network
- Update internal teku library to 23.8.0 [#876](https://github.com/Consensys/web3signer/pull/876)
- Add support for [Lukso network](https://lukso.network/) `--network=lukso`

### Bugs fixed
- Support long name aliases in environment variables and YAML configuration [#825](https://github.com/Consensys/web3signer/pull/825)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ private ExecutionPayload randomExecutionPayload(final SpecVersion specVersion) {
.blockHash(util.randomBytes32())
.transactions(util.randomExecutionPayloadTransactions())
.withdrawals(() -> randomExecutionPayloadWithdrawals(specVersion))
.blobGasUsed(util::randomUInt64)
.excessBlobGas(util::randomUInt64));
.excessBlobGas(util::randomUInt64)
.blobGasUsed(util::randomUInt64));
}

private List<Withdrawal> randomExecutionPayloadWithdrawals(final SpecVersion specVersion) {
Expand Down

0 comments on commit defce89

Please sign in to comment.