mirror of
https://github.com/vacp2p/linea-besu.git
synced 2026-01-08 20:47:59 -05:00
Move EOF to the Osaka Fork (#7719)
* Move EOF to the Osaka Fork * Ensure Osaka activations are working * Remove CancunEOF and PragueEOF forks * Move EOF tools to default to Osaka Signed-off-by: Danno Ferrin <danno@numisight.com> * remove eof tests that fail only because of fork Signed-off-by: Danno Ferrin <danno@numisight.com> * Restore CancunEOF * Update unit tests to use "Cancun" as pre-eof fork * Make PC in trace zeroed to start of code section 0 * Update extcall to consider precompiles warm * Add stack checking to CALLF operation Signed-off-by: Danno Ferrin <danno@numisight.com> --------- Signed-off-by: Danno Ferrin <danno@numisight.com> Co-authored-by: Sally MacFarlane <macfarla.github@gmail.com>
This commit is contained in:
@@ -119,7 +119,7 @@ public class EofContainerSubCommand implements Runnable {
|
||||
.constructParametricType(Map.class, String.class, EOFTestCaseSpec.class);
|
||||
|
||||
List<FuzzingClient> fuzzingClients = new ArrayList<>();
|
||||
EVM evm = MainnetEVMs.pragueEOF(EvmConfiguration.DEFAULT);
|
||||
EVM evm = MainnetEVMs.osaka(EvmConfiguration.DEFAULT);
|
||||
long validContainers;
|
||||
long totalContainers;
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@ class InternalClient implements FuzzingClient {
|
||||
|
||||
public InternalClient(final String clientName) {
|
||||
this.name = clientName;
|
||||
this.evm = MainnetEVMs.pragueEOF(EvmConfiguration.DEFAULT);
|
||||
this.evm = MainnetEVMs.osaka(EvmConfiguration.DEFAULT);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user