mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-29 13:48:00 +00:00
ea43466879
* root-offences pallet * fix errors * cleaned up a bit * remove unwrap() * new pallet is getting compiled * remove unnecessary type annotations * remove more unnecessary type annotations * addidtional cleaning * commit * cleaned up * fix in logic * add event * removed Clone trait from AccountId * test module * remove unused imports * fmt * fix * separate into functions, still messy * test * first test * fmt * cleaned up a bit * separate into mock.rs and tests.rs * basic docs for now * pallet_staking GenesisiConfig * fix * added start_session * passing tests * impl GenesisConfig for pallet_session * updated event * Update frame/root-offences/src/lib.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Update frame/root-offences/src/lib.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * remove <T: Config * specifying trait bounds inside Config * commit * active era increases correctly :) * ExtBuilder * slashing works * new test * additional test * commit * order * fix? * fix in logic * remove unnecessary * wrap comment at 100 * fmt * merge fixes * Update frame/root-offences/src/lib.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Update frame/root-offences/src/lib.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * docs * Update frame/root-offences/README.md Co-authored-by: Andronik <write@reusable.software> * Update frame/root-offences/Cargo.toml Co-authored-by: Andronik <write@reusable.software> * license header Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Co-authored-by: Andronik <write@reusable.software>
52 lines
2.0 KiB
TOML
52 lines
2.0 KiB
TOML
[package]
|
|
name = "pallet-root-offences"
|
|
version = "1.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "FRAME root offences pallet"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
|
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
|
|
|
|
pallet-session = { version = "4.0.0-dev", features = [ "historical" ], path = "../../frame/session", default-features = false }
|
|
pallet-staking = { version = "4.0.0-dev", default-features = false, path = "../../frame/staking" }
|
|
pallet-offences = { version = "4.0.0-dev", default-features = false, path = "../../frame/offences" }
|
|
|
|
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
|
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
|
sp-runtime = { version = "6.0.0", path = "../../primitives/runtime" }
|
|
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking" }
|
|
|
|
[dev-dependencies]
|
|
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
|
pallet-timestamp = { version = "4.0.0-dev", path = "../timestamp" }
|
|
pallet-staking-reward-curve = { version = "4.0.0-dev", path = "../staking/reward-curve" }
|
|
|
|
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
|
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
|
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
|
|
|
frame-election-provider-support = { version = "4.0.0-dev", path = "../election-provider-support" }
|
|
|
|
[features]
|
|
runtime-benchmarks = []
|
|
try-runtime = ["frame-support/try-runtime"]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"pallet-session/std",
|
|
"pallet-staking/std",
|
|
"pallet-offences/std",
|
|
"scale-info/std",
|
|
"sp-runtime/std",
|
|
]
|