Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ protected Address(final Bytes bytes) {
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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void accountAddressEquals() {
}

@Test
public void accountAddresHashCode() {
public void accountAddressHashCode() {
final Address addr =
Address.wrap(Bytes.fromHexString("0x0000000000000000000000000000000000101010"));
final Address addr2 =
Expand Down