Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
Signed-off-by: Danno Ferrin <[email protected]>
  • Loading branch information
shemnon committed Jan 9, 2025
1 parent b08c0b3 commit 25c9384
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,8 @@ private void traceTestSpecs(final String test, final List<GeneralStateTestCaseEi
blockHeader,
transaction,
blockHeader.getCoinbase(),
(__, blockNumber) -> Hash.hash(Bytes.wrap(Long.toString(blockNumber).getBytes(UTF_8))),
(__, blockNumber) ->
Hash.hash(Bytes.wrap(Long.toString(blockNumber).getBytes(UTF_8))),
false,
TransactionValidationParams.processingBlock(),
tracer,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*/
public interface BlockHashLookup extends BiFunction<MessageFrame, Long, Hash> {

default long getLookback() {
return 256L;
}
default long getLookback() {
return 256L;
}
}

0 comments on commit 25c9384

Please sign in to comment.