This commit is contained in:
Serban Iorga
2024-03-27 13:25:37 +01:00
committed by Bastian Köcher
parent 1dba7e052d
commit aeb3438322
2 changed files with 2 additions and 3 deletions
@@ -56,6 +56,5 @@ sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", bra
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
[dev-dependencies]
bp-rococo = { path = "../../chains/chain-rococo" }
pallet-transaction-payment = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
relay-substrate-client = { path = "../client-substrate", features = ["test-helpers"] }
@@ -528,8 +528,8 @@ mod tests {
use super::*;
use relay_substrate_client::test_chain::TestChain;
const AT_SOURCE: Option<bp_rococo::BlockNumber> = Some(10);
const AT_TARGET: Option<bp_rococo::BlockNumber> = Some(1);
const AT_SOURCE: Option<BlockNumberOf<TestChain>> = Some(10);
const AT_TARGET: Option<BlockNumberOf<TestChain>> = Some(1);
#[async_std::test]
async fn mandatory_headers_scan_range_selects_range_if_some_headers_are_missing() {