Skip to content

Commit

Permalink
merged CHANGELOG
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Florentine <justin+github@florentine.us>
  • Loading branch information
jflo committed Dec 22, 2022
1 parent eae2f4e commit 6e98f95
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
## 23.1

### Additions and Improvements
- Add access list to Transaction Call Object [#4802](https://github.com/hyperledger/besu/issues/4801)
- Add new KZG precompile and option to override the trusted setup being used.

### Breaking Changes
- GoQuorum-compatible privacy is deprecated and will be removed in 23.4
- IBFT 1.0 is deprecated and will be removed in 23.4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ public void toURI_WithHostnameShouldWorkWhenDnsEnabledAndUpdateEnabled()
"enode://"
+ VALID_NODE_ID
+ "@"
+ InetAddress.getLocalHost().getHostAddress()
+ InetAddress.getLocalHost().getHostName()
+ ":"
+ P2P_PORT;
final URI expectedURI = URI.create(enodeURLString);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ public void syncStatusPermissioningCheckShouldAllowDNS() throws UnknownHostExcep
.listeningPort(9999)
.disableDiscovery()
.ipAddress(
InetAddress.getLocalHost().getHostAddress(),
"127.0.0.1",
ImmutableEnodeDnsConfiguration.builder()
.dnsEnabled(true)
.updateEnabled(true)
Expand Down

0 comments on commit 6e98f95

Please sign in to comment.