mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-18 20:01:03 +00:00
New root_testing pallet (#12451)
* Move fill_block to RootOffences * docs * new pallet * new line * fix * Update frame/root-testing/src/lib.rs Co-authored-by: Bastian Köcher <git@kchr.de> * Update frame/root-testing/src/lib.rs Co-authored-by: Bastian Köcher <git@kchr.de> * Update bin/node/runtime/src/lib.rs Co-authored-by: Bastian Köcher <git@kchr.de> * Update frame/root-testing/src/lib.rs Co-authored-by: Bastian Köcher <git@kchr.de> * Update frame/root-testing/src/lib.rs Co-authored-by: Bastian Köcher <git@kchr.de> * Update frame/root-testing/src/lib.rs Co-authored-by: Bastian Köcher <git@kchr.de> * fixes * problem solved * revert * fix dependency * hopefully making the CI happy * ... * dummy call * remove dummy * fix warning Co-authored-by: Bastian Köcher <git@kchr.de>
This commit is contained in:
@@ -1,12 +1,13 @@
|
||||
[package]
|
||||
name = "pallet-root-offences"
|
||||
version = "1.0.0"
|
||||
version = "1.0.0-dev"
|
||||
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"
|
||||
readme = "README.md"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
@@ -17,11 +18,10 @@ 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-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking" }
|
||||
|
||||
[dev-dependencies]
|
||||
@@ -45,7 +45,6 @@ std = [
|
||||
"frame-system/std",
|
||||
"pallet-session/std",
|
||||
"pallet-staking/std",
|
||||
"pallet-offences/std",
|
||||
"scale-info/std",
|
||||
"sp-runtime/std",
|
||||
]
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Sudo Offences Pallet
|
||||
# Root Offences Pallet
|
||||
|
||||
Pallet that allows the root to create an offence.
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
//! # Sudo Offences Pallet
|
||||
//! # Root Offences Pallet
|
||||
//! Pallet that allows the root to create an offence.
|
||||
//!
|
||||
//! NOTE: This pallet should be used for testing purposes.
|
||||
|
||||
Reference in New Issue
Block a user