mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 16:21:02 +00:00
fdc991f973
* double-commit and prepare misbehavior * get misbehavior on completion * collect misbehavior on drop, not only on success * kill unused transaction_index field * add primitive misbehavior report type * add misbehavior report transaction * store prior session * fix set_items * basic checks for misbehavior reports * crate for substrate bft misbehavior checking * integrate misbehavior check crate * fix comment * new wasm binaries * fix hash in test * import misbehavior transactions into queue * fix test build * sign on digest and full proposal when proposing * detect proposal misbehavior * fix fallout * restore balance/bondage types
33 lines
982 B
TOML
33 lines
982 B
TOML
[package]
|
|
name = "polkadot-runtime"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
rustc-hex = "1.0"
|
|
hex-literal = "0.1.0"
|
|
log = { version = "0.3", optional = true }
|
|
substrate-codec = { path = "../../substrate/codec" }
|
|
substrate-runtime-std = { path = "../../substrate/runtime-std" }
|
|
substrate-runtime-io = { path = "../../substrate/runtime-io" }
|
|
substrate-runtime-support = { path = "../../substrate/runtime-support" }
|
|
substrate-primitives = { path = "../../substrate/primitives" }
|
|
substrate-misbehavior-check = { path = "../../substrate/misbehavior-check" }
|
|
polkadot-primitives = { path = "../primitives" }
|
|
|
|
[dev-dependencies]
|
|
substrate-keyring = { path = "../../substrate/keyring" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"substrate-codec/std",
|
|
"substrate-runtime-std/std",
|
|
"substrate-runtime-io/std",
|
|
"substrate-runtime-support/std",
|
|
"substrate-primitives/std",
|
|
"substrate-misbehavior-check/std",
|
|
"polkadot-primitives/std",
|
|
"log"
|
|
]
|