We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2129ef6 commit 63cf7f0Copy full SHA for 63cf7f0
arithmetization/src/main/java/net/consensys/linea/zktracer/ZkTracer.java
@@ -96,8 +96,10 @@ public ZkTracer(ChainConfig chain) {
96
};
97
this.trace =
98
switch (chain.fork) {
99
- default -> new TraceLondon();
100
- // case SHANGHAI -> new TraceShanghai();
+ case LONDON -> new TraceLondon();
+ case SHANGHAI -> new TraceShanghai();
101
+ default -> throw new IllegalArgumentException(
102
+ "Fork config can only be LONDON or SHANGHAI for now");
103
104
final DebugMode.PinLevel debugLevel = new DebugMode.PinLevel();
105
this.debugMode =
0 commit comments