Skip to content

Commit 94cad0f

Browse files
authored
style: update audit param (#425)
1 parent 2e17d16 commit 94cad0f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: pallets/audit/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ pub mod pallet {
879879
weight = weight.saturating_add(T::DbWeight::get().reads_writes(1, 1));
880880
}
881881

882-
if count >= 30 {
882+
if count >= 100 {
883883
let result = T::MinerControl::force_miner_exit(&miner);
884884
weight = weight.saturating_add(T::DbWeight::get().reads_writes(5, 5));
885885
if result.is_err() {

Diff for: standalone/chain/runtime/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
152152
// and set impl_version to 0. If only runtime
153153
// implementation changes and behavior does not, then leave spec_version as
154154
// is and increment impl_version.
155-
spec_version: 122,
155+
spec_version: 124,
156156
impl_version: 0,
157157
apis: RUNTIME_API_VERSIONS,
158158
transaction_version: 1,

0 commit comments

Comments
 (0)