Skip to content

Commit

Permalink
chore: remove repetitive words (#6730)
Browse files Browse the repository at this point in the history
Signed-off-by: wellweek <[email protected]>
Co-authored-by: Sally MacFarlane <[email protected]>
  • Loading branch information
wellweek and macfarla authored Mar 15, 2024
1 parent 9bf5427 commit 2ce2a55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2508,7 +2508,7 @@ Early access features are available features that are not recommended for produc
have unstable interfaces.

* [Onchain privacy groups](https://besu.hyperledger.org/en/latest/Concepts/Privacy/Onchain-PrivacyGroups/) with add and remove members.
Not being able to to re-add a member to an onchain privacy group is a [known issue](https://github.com/hyperledger/besu/issues/455)
Not being able to re-add a member to an onchain privacy group is a [known issue](https://github.com/hyperledger/besu/issues/455)
with the add and remove functionality.

### Known Issues
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public static Address fromHexStringStrict(final String str) {
final Bytes value = Bytes.fromHexString(str);
checkArgument(
value.size() == SIZE,
"An account address must be be %s bytes long, got %s",
"An account address must be %s bytes long, got %s",
SIZE,
value.size());
return new Address(value);
Expand Down

0 comments on commit 2ce2a55

Please sign in to comment.