fixed typos (#429)

Signed-off-by: Sally MacFarlane <sally.macfarlane@consensys.net>

Co-authored-by: CJ Hare <CjHare@users.noreply.github.com>
This commit is contained in:
Sally MacFarlane
2020-02-26 17:15:29 +10:00
committed by GitHub
parent 30fa565dca
commit 9a088f7b2d
2 changed files with 2 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ public class Address extends DelegatingBytes implements org.hyperledger.besu.plu
public static Address wrap(final Bytes value) {
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);

View File

@@ -41,7 +41,7 @@ public class AddressTest {
}
@Test
public void accountAddresHashCode() {
public void accountAddressHashCode() {
final Address addr =
Address.wrap(Bytes.fromHexString("0x0000000000000000000000000000000000101010"));
final Address addr2 =