diff --git a/runtime/cere-dev/src/lib.rs b/runtime/cere-dev/src/lib.rs index 6c769115d..179a4f035 100644 --- a/runtime/cere-dev/src/lib.rs +++ b/runtime/cere-dev/src/lib.rs @@ -153,7 +153,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: 61006, + spec_version: 61007, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 23, diff --git a/runtime/cere/src/lib.rs b/runtime/cere/src/lib.rs index eee86d521..7a8100782 100644 --- a/runtime/cere/src/lib.rs +++ b/runtime/cere/src/lib.rs @@ -147,7 +147,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: 61006, + spec_version: 61007, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 23, @@ -1337,7 +1337,7 @@ impl pallet_ddc_verification::Config for Runtime { type OffchainIdentifierId = ddc_primitives::crypto::OffchainIdentifierId; type ActivityHasher = BlakeTwo256; const MAJORITY: u8 = 67; - const BLOCK_TO_START: u16 = 100; // every 100 blocks + const BLOCK_TO_START: u16 = 1; // every block const DAC_REDUNDANCY_FACTOR: u16 = 3; type AggregatorsQuorum = MajorityOfAggregators; const MAX_PAYOUT_BATCH_SIZE: u16 = MAX_PAYOUT_BATCH_SIZE;