Skip to content

Commit

Permalink
add Laoish networjk
Browse files Browse the repository at this point in the history
  • Loading branch information
asiniscalchi committed Oct 4, 2024
1 parent b9534fe commit 0a8a1f5
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions xcm-simulator/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ pub const INITIAL_BALANCE: u128 = 1_000_000_000;

decl_test_parachain! {
pub struct ParaA {
Runtime = laosish::Runtime,
XcmpMessageHandler = laosish::MsgQueue,
DmpMessageHandler = laosish::MsgQueue,
Runtime = parachain::Runtime,
XcmpMessageHandler = parachain::MsgQueue,
DmpMessageHandler = parachain::MsgQueue,
new_ext = para_ext(1),
}
}
Expand All @@ -45,6 +45,15 @@ decl_test_parachain! {
}
}

decl_test_parachain! {
pub struct Laosish {
Runtime = laosish::Runtime,
XcmpMessageHandler = laosish::MsgQueue,
DmpMessageHandler = laosish::MsgQueue,
new_ext = para_ext(3),
}
}

decl_test_relay_chain! {
pub struct Relay {
Runtime = relay_chain::Runtime,
Expand Down

0 comments on commit 0a8a1f5

Please sign in to comment.