Skip to content

Commit

Permalink
Upgrade teku to 23.8.0 (#876)
Browse files Browse the repository at this point in the history
* Upgrade teku to 23.8.0

* Add changelog

* Add changelog for lukso
  • Loading branch information
gfukushima authored Aug 16, 2023
1 parent d4f982e commit c2a901b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +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)
- 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,7 +135,7 @@ private ExecutionPayload randomExecutionPayload(final SpecVersion specVersion) {
.blockHash(util.randomBytes32())
.transactions(util.randomExecutionPayloadTransactions())
.withdrawals(() -> randomExecutionPayloadWithdrawals(specVersion))
.excessDataGas(util::randomUInt64));
.excessBlobGas(util::randomUInt64));
}

private List<Withdrawal> randomExecutionPayloadWithdrawals(final SpecVersion specVersion) {
Expand Down
2 changes: 1 addition & 1 deletion gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ dependencyManagement {

dependency 'org.xipki.iaik:sunpkcs11-wrapper:1.4.9'

dependencySet(group: 'tech.pegasys.teku.internal', version: '23.6.2') {
dependencySet(group: 'tech.pegasys.teku.internal', version: '23.8.0') {
entry ('bls') {
exclude group: 'org.bouncycastle', name: 'bcprov-jdk15on'
}
Expand Down

0 comments on commit c2a901b

Please sign in to comment.