mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 14:37:57 +00:00
a9c21b8b84
* slots: create primitives crate for consensus slots * offences: add method to check if an offence is unknown * babe: initial equivocation reporting implementation * babe: organize imports * babe: working equivocation reporting * babe: add slot number to equivocation proof * session: move duplicate traits to session primitives * babe: move equivocation stuff to its own file * offences: fix test * session: don't have primitives depend on frame_support * babe: use opaque type for key owner proof * babe: cleanup client equivocation reporting * babe: cleanup equivocation code in pallet * babe: allow sending signed equivocation reports * node: fix compilation * fix test compilation * babe: return bool on check_equivocation_proof * babe: add test for equivocation reporting * babe: add more tests * babe: add test for validate unsigned * babe: take slot number in generate_key_ownership_proof API * babe: add benchmark for equivocation proof checking * session: add benchmark for membership proof checking * offences: fix babe benchmark * babe: add weights based on benchmark results * babe: adjust weights after benchmarking on reference hardware * babe: reorder checks in check_and_report_equivocation
46 lines
1.9 KiB
TOML
46 lines
1.9 KiB
TOML
[package]
|
|
name = "pallet-session-benchmarking"
|
|
version = "2.0.0-rc4"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.dev"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "FRAME sessions pallet benchmarking"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/std" }
|
|
sp-session = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/session" }
|
|
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/runtime" }
|
|
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../../system" }
|
|
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../../benchmarking" }
|
|
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../../support" }
|
|
pallet-staking = { version = "2.0.0-rc4", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
|
|
pallet-session = { version = "2.0.0-rc4", default-features = false, path = "../../session" }
|
|
rand = { version = "0.7.2", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
serde = { version = "1.0.101" }
|
|
codec = { package = "parity-scale-codec", version = "1.3.1", features = ["derive"] }
|
|
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
|
|
pallet-staking-reward-curve = { version = "2.0.0-rc4", path = "../../staking/reward-curve" }
|
|
sp-io ={ version = "2.0.0-rc4", path = "../../../primitives/io" }
|
|
pallet-timestamp = { version = "2.0.0-rc4", path = "../../timestamp" }
|
|
pallet-balances = { version = "2.0.0-rc4", path = "../../balances" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"sp-std/std",
|
|
"sp-session/std",
|
|
"sp-runtime/std",
|
|
"frame-system/std",
|
|
"frame-benchmarking/std",
|
|
"frame-support/std",
|
|
"pallet-staking/std",
|
|
"pallet-session/std",
|
|
]
|