Files
pezkuwi-subxt/Cargo.toml
T
Bastian Köcher d3b4279f14 Adds support for checking the timestamp inherent while validating a block (#494)
* Adds support for checking the timestamp inherent while validating a block

This adds support for checking the timestamp inherent while validating a
block. This will use the relay chain slot number * relay chain slot
duration to calculate a timestamp. This timestamp is used to check the
timestamp in the timestamp inherent.

* Update polkadot-parachains/rococo-runtime/src/lib.rs

Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com>

* Update polkadot-parachains/statemine-runtime/src/lib.rs

Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com>

* Update primitives/timestamp/src/lib.rs

Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com>

* Fix warnings

Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com>
Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com>
2021-06-16 10:53:47 +02:00

41 lines
1.0 KiB
TOML

[workspace]
members = [
"client/cli",
"client/consensus/aura",
"client/consensus/common",
"client/consensus/relay-chain",
"client/network",
"client/pov-recovery",
"client/service",
"pallets/aura-ext",
"pallets/collator-selection",
"pallets/dmp-queue",
"pallets/parachain-system",
"pallets/parachain-system/proc-macro",
"pallets/session-benchmarking",
"pallets/xcm",
"pallets/xcmp-queue",
"primitives/core",
"primitives/parachain-inherent",
"primitives/timestamp",
"primitives/utility",
"polkadot-parachains/",
"polkadot-parachains/pallets/parachain-info",
"polkadot-parachains/pallets/ping",
"polkadot-parachains/rococo-runtime",
"polkadot-parachains/shell-runtime",
"polkadot-parachains/statemint-common",
"polkadot-parachains/statemint-runtime",
"polkadot-parachains/statemine-runtime",
"polkadot-parachains/westmint-runtime",
"test/runtime",
"test/runtime-upgrade",
"test/client",
"test/service",
"test/relay-sproof-builder",
"test/relay-validation-worker-provider",
]
[profile.release]
panic = "unwind"