Fixed signers' calculation once more.

pull/259/head v0.7.2
Revertron 2 years ago
parent 3e1f93f988
commit 27ba7c5710

2
Cargo.lock generated

@ -84,7 +84,7 @@ dependencies = [
[[package]]
name = "alfis"
version = "0.7.1"
version = "0.7.2"
dependencies = [
"base64",
"bincode",

@ -1,6 +1,6 @@
[package]
name = "alfis"
version = "0.7.1"
version = "0.7.2"
authors = ["Revertron <alfis@revertron.com>"]
edition = "2021"
build = "build.rs"

@ -1062,7 +1062,7 @@ impl Chain {
}
}
count += 1;
if !mitigated && count > 25 {
if !mitigated && count > 5000 {
tail = tail / 13;
mitigated = true;
}

Loading…
Cancel
Save