Skip to content

Commit

Permalink
add testnet for unit tests for first version
Browse files Browse the repository at this point in the history
  • Loading branch information
dudo50 committed Nov 3, 2024
1 parent 48e38b0 commit b9f28e6
Show file tree
Hide file tree
Showing 23 changed files with 2,210 additions and 18 deletions.
8 changes: 8 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 15 additions & 3 deletions templates/parachain/pallets/xcnft/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ frame-system = { workspace = true }

#XCM
xcm = { workspace = true}
xcm-builder = { workspace = true, default-features = false }

cumulus-primitives-core = { workspace = true }
cumulus-pallet-xcm = { workspace = true }
Expand All @@ -49,8 +48,16 @@ sp-io = { workspace = true, default-features = true }

pallet-balances = { workspace = true, default-features = true }



# For unit tests
xcm-builder = { workspace = true, default-features = true }
xcm-simulator = { workspace = true, default-features = true }
xcm-executor = { workspace = true, default-features = true }
sp-tracing = { workspace = true, default-features = true }
pallet-xcm = { workspace = true, default-features = true }
polkadot-core-primitives = { workspace = true, default-features = true }
polkadot-runtime-parachains = { workspace = true, default-features = true }
polkadot-parachain-primitives = { workspace = true, default-features = true }
pallet-message-queue = { workspace = true, default-features = true }

[features]
default = [ "std" ]
Expand All @@ -63,6 +70,11 @@ runtime-benchmarks = [
"xcm-builder/runtime-benchmarks",
"pallet-balances/runtime-benchmarks",
"pallet-nfts/runtime-benchmarks",
"pallet-xcm/runtime-benchmarks",
"pallet-message-queue/runtime-benchmarks",
"polkadot-parachain-primitives/runtime-benchmarks",
"polkadot-runtime-parachains/runtime-benchmarks",
"xcm-executor/runtime-benchmarks",
]
std = [
"codec/std",
Expand Down
Loading

0 comments on commit b9f28e6

Please sign in to comment.