diff --git a/params/version.go b/params/version.go index a09642c446..0602ba04a0 100644 --- a/params/version.go +++ b/params/version.go @@ -24,7 +24,7 @@ import ( const ( VersionMajor = 4 // Major version component of the current release VersionMinor = 4 // Minor version component of the current release - VersionPatch = 12 // Patch version component of the current release + VersionPatch = 13 // Patch version component of the current release VersionMeta = "sepolia" // Version metadata to append to the version string ) diff --git a/rollup/circuitcapacitychecker/libzkp/src/lib.rs b/rollup/circuitcapacitychecker/libzkp/src/lib.rs index ea9a55d229..c2a25c8c1d 100644 --- a/rollup/circuitcapacitychecker/libzkp/src/lib.rs +++ b/rollup/circuitcapacitychecker/libzkp/src/lib.rs @@ -160,7 +160,7 @@ pub mod checker { let traces = serde_json::from_slice::(&block_trace)?; let r = panic::catch_unwind(|| { - let ccc_instance = CHECKERS + CHECKERS .get_mut() .ok_or(anyhow!( "fail to get circuit capacity checkers map in apply_block" @@ -168,9 +168,8 @@ pub mod checker { .get_mut(&id) .ok_or(anyhow!( "fail to get circuit capacity checker (id: {id:?}) in apply_block" - ))?; - ccc_instance.light_mode = false; - ccc_instance.estimate_circuit_capacity(&[traces]) + ))? + .estimate_circuit_capacity(&[traces]) }); match r { Ok(result) => result,