From 463616eab6e5615b426a631149463cee53aaad44 Mon Sep 17 00:00:00 2001 From: Minhyuk Kim Date: Tue, 1 Oct 2024 13:54:29 -0600 Subject: [PATCH] Use binary snapshot in op-e2e tests --- op-e2e/e2eutils/challenger/helper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op-e2e/e2eutils/challenger/helper.go b/op-e2e/e2eutils/challenger/helper.go index 1edd314..59b895d 100644 --- a/op-e2e/e2eutils/challenger/helper.go +++ b/op-e2e/e2eutils/challenger/helper.go @@ -43,7 +43,7 @@ func applyAsteriscConfig( root := op_e2e_challenger.FindMonorepoRoot(t) c.Asterisc.VmBin = root + "rvgo/bin/asterisc" c.Asterisc.Server = root + "rvsol/lib/optimism/op-program/bin/op-program" - c.AsteriscAbsolutePreState = root + "rvgo/bin/prestate.json" + c.AsteriscAbsolutePreState = root + "rvgo/bin/prestate.bin.gz" c.Asterisc.SnapshotFreq = 10_000_000 genesisBytes, err := json.Marshal(l2Genesis)