3ddf58cef9
- Fix pezpallet-welati EnsureOrigin implementations (3 fixes)
- Remove incorrect #[cfg(not(feature = "runtime-benchmarks"))] blocks
- Affects EnsureSerok, EnsureParlementer, EnsureDiwan
- Fix asset-hub-zagros governance origins macros (2 fixes)
- Remove non-benchmark try_successful_origin from decl_unit_ensures!
- Remove non-benchmark try_successful_origin from decl_ensure!
- Rename snowbridge -> pezsnowbridge for consistency
- Update WORKFLOW_PLAN.md with build status and package names
- Correct package names: pezkuwi-teyrchain-bin, pezstaging-node-cli
- Mark completed builds: pezkuwi, pezkuwi-teyrchain-bin,
pezstaging-node-cli, teyrchain-template-node
14 lines
351 B
Rust
14 lines
351 B
Rust
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-FileCopyrightText: 2025 Snowfork <hello@snowfork.com>
|
|
// SPDX-FileCopyrightText: 2021-2025 Parity Technologies (UK) Ltd.
|
|
|
|
pub mod converter;
|
|
pub mod message;
|
|
pub mod traits;
|
|
|
|
pub use converter::*;
|
|
pub use message::*;
|
|
pub use traits::*;
|
|
|
|
const LOG_TARGET: &str = "pezsnowbridge-inbound-queue-primitives";
|