diff --git a/crates/sovereign-sdk/module-system/sov-modules-stf-blueprint/src/lib.rs b/crates/sovereign-sdk/module-system/sov-modules-stf-blueprint/src/lib.rs index 7d7d5c085..971eeb42f 100644 --- a/crates/sovereign-sdk/module-system/sov-modules-stf-blueprint/src/lib.rs +++ b/crates/sovereign-sdk/module-system/sov-modules-stf-blueprint/src/lib.rs @@ -16,7 +16,7 @@ use sov_modules_api::hooks::{ use sov_modules_api::transaction::{PreFork2Transaction, Transaction}; use sov_modules_api::{ native_debug, BasicAddress, BlobReaderTrait, Context, DaSpec, DispatchCall, Genesis, Signature, - Spec, StateCheckpoint, UnsignedSoftConfirmation, WorkingSet, + Spec, UnsignedSoftConfirmation, WorkingSet, }; use sov_rollup_interface::da::DaDataBatchProof; use sov_rollup_interface::fork::ForkManager; @@ -379,9 +379,7 @@ where let soft_confirmation_info = HookSoftConfirmationInfo::new(soft_confirmation, *pre_state_root, current_spec); - let checkpoint = - StateCheckpoint::with_witness(pre_state.clone(), state_witness, offchain_witness); - let mut working_set = checkpoint.to_revertable(); + let mut working_set = WorkingSet::with_witness(pre_state.clone(), state_witness, offchain_witness); native_debug!("Applying soft confirmation in STF Blueprint");