diff --git a/pallets/audit/src/lib.rs b/pallets/audit/src/lib.rs index e6d5420d..a401be84 100644 --- a/pallets/audit/src/lib.rs +++ b/pallets/audit/src/lib.rs @@ -471,9 +471,9 @@ pub mod pallet { let idle_prove = challenge_info.prove_info.idle_prove.as_mut().ok_or(Error::::UnSubmitted)?; - if tee_puk != idle_prove.tee_puk { - return Err(Error::::NonExistentMission)? - } + // if tee_puk != idle_prove.tee_puk { + // return Err(Error::::NonExistentMission)? + // } if let Some(_) = idle_prove.verify_result { return Err(Error::::Submitted)? @@ -593,9 +593,10 @@ pub mod pallet { .service_prove .as_mut() .ok_or(Error::::UnSubmitted)?; - if tee_puk != service_prove.tee_puk { - return Err(Error::::NonExistentMission)? - } + + // if tee_puk != service_prove.tee_puk { + // return Err(Error::::NonExistentMission)? + // } if let Some(_) = service_prove.verify_result { return Err(Error::::Submitted)? diff --git a/standalone/chain/runtime/src/lib.rs b/standalone/chain/runtime/src/lib.rs index ed71fa29..50a3ef3a 100644 --- a/standalone/chain/runtime/src/lib.rs +++ b/standalone/chain/runtime/src/lib.rs @@ -154,7 +154,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // and set impl_version to 0. If only runtime // implementation changes and behavior does not, then leave spec_version as // is and increment impl_version. - spec_version: 127, + spec_version: 128, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1,