Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add standard trace bad block to file #1403

Merged
merged 19 commits into from
Sep 29, 2020
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix pipeline
Signed-off-by: Karim TAAM <karim.t2am@gmail.com>
  • Loading branch information
matkt committed Sep 24, 2020
commit 9742da8f3986a511b32a1be23f969b8fbb1581b6
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
import org.hyperledger.besu.nat.NatService;

import java.math.BigInteger;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
Expand Down Expand Up @@ -113,6 +114,9 @@ public Map<String, JsonRpcMethod> methods() {
apis.add(RpcApis.WEB3);
apis.add(RpcApis.PRIV);
apis.add(RpcApis.DEBUG);

final Path dataDir = mock(Path.class);

return new JsonRpcMethodsFactory()
.methods(
CLIENT_VERSION,
Expand All @@ -135,6 +139,7 @@ public Map<String, JsonRpcMethod> methods() {
webSocketConfiguration,
metricsConfiguration,
natService,
new HashMap<>());
new HashMap<>(),
dataDir);
}
}