From fc3422ce2f2a0849277e8479adbc75d189dc0434 Mon Sep 17 00:00:00 2001 From: Javier Cortejoso Date: Tue, 12 Nov 2024 16:11:07 +0100 Subject: [PATCH] Added config InitializeAnchorStateRegistry --- op-chain-ops/genesis/config.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/op-chain-ops/genesis/config.go b/op-chain-ops/genesis/config.go index f06f5f23d927..5112be98b19e 100644 --- a/op-chain-ops/genesis/config.go +++ b/op-chain-ops/genesis/config.go @@ -666,6 +666,9 @@ type FaultProofDeployConfig struct { // UseFaultProofs is a flag that indicates if the system is using fault // proofs instead of the older output oracle mechanism. UseFaultProofs bool `json:"useFaultProofs"` + // InitializeAnchorStateRegistry is a flag that indicates if the system should + // initialize the AnchorStateRegistry when running Deploy.s.sol run() function. + InitializeAnchorStateRegistry bool `json:"initializeAnchorStateRegistry"` // FaultGameAbsolutePrestate is the absolute prestate of Cannon. This is computed // by generating a proof from the 0th -> 1st instruction and grabbing the prestate from // the output JSON. All honest challengers should agree on the setup state of the program.