6b597bebcf
- 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
18 lines
442 B
Rust
18 lines
442 B
Rust
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-FileCopyrightText: 2023 Snowfork <hello@snowfork.com>
|
|
|
|
use crate::FAILING_NONCE;
|
|
use pezsnowbridge_core::reward::{AddTip, AddTipError};
|
|
|
|
pub struct MockOkInboundQueue;
|
|
|
|
impl AddTip for MockOkInboundQueue {
|
|
fn add_tip(nonce: u64, _amount: u128) -> Result<(), AddTipError> {
|
|
// Force an error condition
|
|
if nonce == FAILING_NONCE {
|
|
return Err(AddTipError::NonceConsumed);
|
|
}
|
|
Ok(())
|
|
}
|
|
}
|