Skip to content

Commit

Permalink
build issues
Browse files Browse the repository at this point in the history
Signed-off-by: garyschulte <garyschulte@gmail.com>
  • Loading branch information
garyschulte committed Jul 10, 2023
1 parent 37b2b07 commit a72b41a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@ public void setup() {
return new BlockProcessingResult(
Optional.of(
new BlockProcessingOutputs(
new ReferenceTestWorldState(), blockDataGenerator.receipts(block))));
ReferenceTestWorldState.create(Collections.emptyMap()),
blockDataGenerator.receipts(block))));
});

backwardChain = inMemoryBackwardChain();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ public void setup() {
return new BlockProcessingResult(
Optional.of(
new BlockProcessingOutputs(
new ReferenceTestWorldState(), blockDataGenerator.receipts(block))));
ReferenceTestWorldState.create(Collections.emptyMap()),
blockDataGenerator.receipts(block))));
});
}

Expand Down
1 change: 1 addition & 0 deletions ethereum/referencetests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ dependencies {
implementation project(':datatypes')
implementation project(':ethereum:core')
implementation project(':metrics:core')
implementation project(':util')
implementation project(path: ':ethereum:core', configuration: 'testSupportArtifacts')
implementation project(':ethereum:rlp')
implementation project(':evm')
Expand Down

0 comments on commit a72b41a

Please sign in to comment.