Skip to content

Commit

Permalink
Update javadoc
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Frame <jason.frame@consensys.net>
  • Loading branch information
jframe committed Jan 17, 2023
1 parent 92176c9 commit 664d929
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,7 @@ public List<BlockHeader> getOmmers() {
return ommers;
}

/**
* @return The list of transactions of the block.
*/
/** Returns the list of withdrawals of the block. */
public Optional<List<Withdrawal>> getWithdrawals() {
return withdrawals;
}
Expand Down Expand Up @@ -95,7 +93,7 @@ public static BlockBody readFrom(
}

@Override
public boolean equals(Object o) {
public boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
BlockBody blockBody = (BlockBody) o;
Expand Down

0 comments on commit 664d929

Please sign in to comment.