Skip to content

Commit

Permalink
fixed typos (#429)
Browse files Browse the repository at this point in the history
Signed-off-by: Sally MacFarlane <sally.macfarlane@consensys.net>

Co-authored-by: CJ Hare <CjHare@users.noreply.github.com>
  • Loading branch information
macfarla and CjHare authored Feb 26, 2020
1 parent 30fa565 commit 9a088f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 9a088f7

Please sign in to comment.