diff --git a/README.md b/README.md index 38eb3e7725f..f0a8690d0f2 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/3174/badge)](https://bestpractices.coreinfrastructure.org/projects/3174) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/hyperledger/besu/blob/main/LICENSE) [![Discord](https://img.shields.io/discord/905194001349627914?logo=Hyperledger&style=plastic)](https://discord.gg/hyperledger) + [![Twitter Follow](https://img.shields.io/twitter/follow/HyperledgerBesu)](https://twitter.com/HyperledgerBesu) [Download](https://hyperledger.jfrog.io/artifactory/besu-binaries/besu/) @@ -15,7 +16,7 @@ Besu is an Apache 2.0 licensed, MainNet compatible, Ethereum client written in J * [Besu Issues] * [Besu Wiki](https://wiki.hyperledger.org/display/BESU/Hyperledger+Besu) * [How to Contribute to Besu](https://wiki.hyperledger.org/display/BESU/How+to+Contribute) -* [Besu Roadmap](https://wiki.hyperledger.org/display/BESU/Roadmap) +* [Besu Roadmap & Planning](https://wiki.hyperledger.org/pages/viewpage.action?pageId=24781786) ## Issues diff --git a/ethereum/eth/src/main/java/org/hyperledger/besu/ethereum/eth/manager/PeerReputation.java b/ethereum/eth/src/main/java/org/hyperledger/besu/ethereum/eth/manager/PeerReputation.java index 0c2edf226ed..e152d8c91b6 100644 --- a/ethereum/eth/src/main/java/org/hyperledger/besu/ethereum/eth/manager/PeerReputation.java +++ b/ethereum/eth/src/main/java/org/hyperledger/besu/ethereum/eth/manager/PeerReputation.java @@ -56,7 +56,8 @@ public PeerReputation() { } public PeerReputation(final int initialScore, final int maxScore) { - checkArgument(initialScore <= maxScore, "Inital score must be less than or equal to max score"); + checkArgument( + initialScore <= maxScore, "Initial score must be less than or equal to max score"); this.maxScore = maxScore; this.score = initialScore; } diff --git a/ethereum/eth/src/main/java/org/hyperledger/besu/ethereum/eth/messages/StatusMessage.java b/ethereum/eth/src/main/java/org/hyperledger/besu/ethereum/eth/messages/StatusMessage.java index 9e8af4b0e57..4e268e6b411 100644 --- a/ethereum/eth/src/main/java/org/hyperledger/besu/ethereum/eth/messages/StatusMessage.java +++ b/ethereum/eth/src/main/java/org/hyperledger/besu/ethereum/eth/messages/StatusMessage.java @@ -111,9 +111,9 @@ public Difficulty totalDifficulty() { } /** - * Return The hash of the head of the associated node's local blockchian. + * Return The hash of the head of the associated node's local blockchain. * - * @return The hash of the head of the associated node's local blockchian. + * @return The hash of the head of the associated node's local blockchain. */ public Hash bestHash() { return status().bestHash;