Skip to content

Commit

Permalink
Merge pull request #18 from mangata-finance/refactor/xyk
Browse files Browse the repository at this point in the history
Changed GetMaintenanceTrait source
  • Loading branch information
iStrike7 authored Mar 27, 2023
2 parents 20d0869 + 1bc74a4 commit 4fd770d
Show file tree
Hide file tree
Showing 34 changed files with 52 additions and 48 deletions.
18 changes: 3 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,20 +59,6 @@ inherits = "release"
lto = true
codegen-units = 1

[patch."https://github.com/mangata-finance/mangata-node"]
# pallet-xyk = { path = "../mangata-node/pallets/xyk" }
# pallet-issuance = {path = "../mangata-node/pallets/issuance/"}
# pallet-multipurpose-liquidity = { path = '../mangata-node/pallets/multipurpose-liquidity'}
# pallet-maintenance = { path = '../mangata-node/pallets/maintenance'}
# mp-multipurpose-liquidity = { path = '../mangata-node/primitives/multipurpose-liquidity'}
# mp-traits = { path = '../mangata-node/primitives/traits'}
pallet-xyk = { git = "/~https://github.com/mangata-finance//mangata-node", branch = "develop" }
pallet-issuance = { git = "/~https://github.com/mangata-finance//mangata-node", branch = "develop" }
pallet-multipurpose-liquidity = { git = "/~https://github.com/mangata-finance//mangata-node", branch = "develop" }
pallet-maintenance = { git = "/~https://github.com/mangata-finance//mangata-node", branch = "develop" }
mp-multipurpose-liquidity = { git = "/~https://github.com/mangata-finance//mangata-node", branch = "develop" }
mp-traits = { git = "/~https://github.com/mangata-finance//mangata-node", branch = "develop" }

# patch generated by ./scripts/dev-0.9.29_manifest.sh
[patch."https://github.com/mangata-finance/open-runtime-module-library"]
orml-xcm = { git = "/~https://github.com/mangata-finance//open-runtime-module-library", branch = "mangata-dev" }
Expand Down Expand Up @@ -441,6 +427,7 @@ polkadot-erasure-coding = { git = "/~https://github.com/mangata-finance//polkadot"
pallet-vesting-mangata-rpc = { git = "/~https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
mangata-types = { git = "/~https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-utility-mangata = { git = "/~https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
mangata-support = { git = "/~https://github.com/mangata-finance//substrate", branch = "mangata-dev" }

# patch generated by ./scripts/dev-0.9.29_manifest.sh
[patch."https://github.com/paritytech/substrate"]
Expand Down Expand Up @@ -626,7 +613,7 @@ polkadot-erasure-coding = { git = "/~https://github.com/mangata-finance//polkadot"
pallet-vesting-mangata-rpc-runtime-api = { git = "/~https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-vesting-mangata-rpc = { git = "/~https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-utility-mangata = { git = "/~https://github.com/mangata-finance//substrate", branch = "mangata-dev" }

mangata-support = { git = "/~https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
# patch generated by ./scripts/dev-0.9.29_manifest.sh
[patch."https://github.com/PureStake/substrate"]
mmr-rpc = { git = "/~https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
Expand Down Expand Up @@ -810,6 +797,7 @@ polkadot-erasure-coding = { git = "/~https://github.com/mangata-finance//polkadot"
pallet-vesting-mangata-rpc-runtime-api = { git = "/~https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-vesting-mangata-rpc = { git = "/~https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
pallet-utility-mangata = { git = "/~https://github.com/mangata-finance//substrate", branch = "mangata-dev" }
mangata-support = { git = "/~https://github.com/mangata-finance//substrate", branch = "mangata-dev" }

# patch generated by ./scripts/dev_manifest.sh
[patch."https://github.com/mangata-finance/cumulus"]
Expand Down
3 changes: 2 additions & 1 deletion pallets/dmp-queue/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ frame-system = { git = "/~https://github.com/paritytech/substrate", default-featur
sp-io = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-runtime = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-std = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
mangata-types = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }
mangata-support = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }

# Polkadot
xcm = { git = "/~https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.36" }
Expand All @@ -40,6 +40,7 @@ std = [
"sp-std/std",
"xcm/std",
"cumulus-primitives-core/std",
"mangata-support/std"
]
try-runtime = [
"frame-system/try-runtime",
Expand Down
2 changes: 1 addition & 1 deletion pallets/dmp-queue/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ use frame_support::{
traits::EnsureOrigin,
weights::{constants::WEIGHT_REF_TIME_PER_MILLIS, Weight},
};
use mangata_types::traits::GetMaintenanceStatusTrait;
use mangata_support::traits::GetMaintenanceStatusTrait;
pub use pallet::*;
use scale_info::TypeInfo;
use sp_runtime::RuntimeDebug;
Expand Down
3 changes: 2 additions & 1 deletion pallets/parachain-system/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ sp-state-machine = { git = "/~https://github.com/paritytech/substrate", default-fe
sp-std = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-trie = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-version = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
mangata-types = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }
mangata-support = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }

# Polkadot
polkadot-parachain = { git = "/~https://github.com/paritytech/polkadot", default-features = false, features = [ "wasm-api" ], branch = "release-v0.9.36" }
Expand Down Expand Up @@ -68,6 +68,7 @@ std = [
"sp-state-machine/std",
"sp-std/std",
"sp-trie/std",
"mangata-support/std"
]

runtime-benchmarks = [
Expand Down
2 changes: 1 addition & 1 deletion pallets/parachain-system/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ use frame_support::{
weights::Weight,
};
use frame_system::{ensure_none, ensure_root};
use mangata_types::traits::GetMaintenanceStatusTrait;
use mangata_support::traits::GetMaintenanceStatusTrait;
use polkadot_parachain::primitives::RelayChainBlockNumber;
use sp_runtime::{
traits::{Block as BlockT, BlockNumberProvider, Hash, One, Zero},
Expand Down
3 changes: 2 additions & 1 deletion pallets/xcmp-queue/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ frame-support = { git = "/~https://github.com/paritytech/substrate", default-featu
frame-system = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-runtime = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-std = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
mangata-types = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }
mangata-support = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }

# Polkadot
xcm = { git = "/~https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.36" }
Expand Down Expand Up @@ -53,6 +53,7 @@ std = [
"sp-std/std",
"xcm-executor/std",
"xcm/std",
"mangata-support/std"
]

runtime-benchmarks = [
Expand Down
2 changes: 1 addition & 1 deletion pallets/xcmp-queue/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ use frame_support::{
traits::EnsureOrigin,
weights::{constants::WEIGHT_REF_TIME_PER_MILLIS, Weight},
};
use mangata_types::traits::GetMaintenanceStatusTrait;
use mangata_support::traits::GetMaintenanceStatusTrait;
use rand_chacha::{
rand_core::{RngCore, SeedableRng},
ChaChaRng,
Expand Down
3 changes: 2 additions & 1 deletion parachain-template/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ sp-session = { git = "/~https://github.com/paritytech/substrate", default-features
sp-std = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-transaction-pool = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-version = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
mangata-types = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }
mangata-support = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }

# Polkadot
pallet-xcm = { git = "/~https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.36" }
Expand Down Expand Up @@ -122,6 +122,7 @@ std = [
"xcm-builder/std",
"xcm-executor/std",
"xcm/std",
"mangata-support/std"
]

runtime-benchmarks = [
Expand Down
2 changes: 1 addition & 1 deletion parachain-template/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mod weights;
pub mod xcm_config;

use cumulus_pallet_parachain_system::RelayNumberStrictlyIncreases;
use mangata_types::traits::GetMaintenanceStatusTrait;
use mangata_support::traits::GetMaintenanceStatusTrait;
use smallvec::smallvec;
use sp_api::impl_runtime_apis;
use sp_core::{crypto::KeyTypeId, OpaqueMetadata};
Expand Down
3 changes: 2 additions & 1 deletion parachains/runtimes/assets/statemine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ sp-std = { git = "/~https://github.com/paritytech/substrate", default-features = f
sp-transaction-pool = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-version = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
pallet-state-trie-migration = { git = "/~https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "polkadot-v0.9.36" }
mangata-types = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }
mangata-support = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }

# Polkadot
kusama-runtime-constants = { git = "/~https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.36" }
Expand Down Expand Up @@ -189,4 +189,5 @@ std = [
"pallet-collator-selection/std",
"parachain-info/std",
"parachains-common/std",
"mangata-support/std"
]
2 changes: 1 addition & 1 deletion parachains/runtimes/assets/statemine/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ mod weights;
pub mod xcm_config;

use cumulus_pallet_parachain_system::RelayNumberStrictlyIncreases;
use mangata_types::traits::GetMaintenanceStatusTrait;
use mangata_support::traits::GetMaintenanceStatusTrait;
use sp_api::impl_runtime_apis;
use sp_core::{crypto::KeyTypeId, OpaqueMetadata};
use sp_runtime::{
Expand Down
3 changes: 2 additions & 1 deletion parachains/runtimes/assets/statemint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ sp-session = { git = "/~https://github.com/paritytech/substrate", default-features
sp-std = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-transaction-pool = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-version = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
mangata-types = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }
mangata-support = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }

# Polkadot
pallet-xcm = { git = "/~https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.36" }
Expand Down Expand Up @@ -177,4 +177,5 @@ std = [
"pallet-collator-selection/std",
"parachain-info/std",
"parachains-common/std",
"mangata-support/std"
]
2 changes: 1 addition & 1 deletion parachains/runtimes/assets/statemint/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ mod weights;
pub mod xcm_config;

use cumulus_pallet_parachain_system::RelayNumberStrictlyIncreases;
use mangata_types::traits::GetMaintenanceStatusTrait;
use mangata_support::traits::GetMaintenanceStatusTrait;
use sp_api::impl_runtime_apis;
use sp_core::{crypto::KeyTypeId, OpaqueMetadata};
use sp_runtime::{
Expand Down
3 changes: 2 additions & 1 deletion parachains/runtimes/assets/westmint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ sp-session = { git = "/~https://github.com/paritytech/substrate", default-features
sp-std = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-transaction-pool = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-version = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
mangata-types = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }
mangata-support = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }

# Polkadot
pallet-xcm = { git = "/~https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.36" }
Expand Down Expand Up @@ -177,4 +177,5 @@ std = [
"pallet-collator-selection/std",
"parachain-info/std",
"parachains-common/std",
"mangata-support/std"
]
2 changes: 1 addition & 1 deletion parachains/runtimes/assets/westmint/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ mod weights;
pub mod xcm_config;

use cumulus_pallet_parachain_system::RelayNumberStrictlyIncreases;
use mangata_types::traits::GetMaintenanceStatusTrait;
use mangata_support::traits::GetMaintenanceStatusTrait;
use sp_api::impl_runtime_apis;
use sp_core::{crypto::KeyTypeId, OpaqueMetadata};
use sp_runtime::{
Expand Down
3 changes: 2 additions & 1 deletion parachains/runtimes/bridge-hubs/bridge-hub-kusama/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ sp-session = { git = "/~https://github.com/paritytech/substrate", default-features
sp-std = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-transaction-pool = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-version = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
mangata-types = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }
mangata-support = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }

# Polkadot
kusama-runtime-constants = { git = "/~https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.36" }
Expand Down Expand Up @@ -127,6 +127,7 @@ std = [
"xcm-builder/std",
"xcm-executor/std",
"xcm/std",
"mangata-support/std"
]

runtime-benchmarks = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ mod weights;
pub mod xcm_config;

use cumulus_pallet_parachain_system::RelayNumberStrictlyIncreases;
use mangata_types::traits::GetMaintenanceStatusTrait;
use mangata_support::traits::GetMaintenanceStatusTrait;
use sp_api::impl_runtime_apis;
use sp_core::{crypto::KeyTypeId, OpaqueMetadata};
use sp_runtime::{
Expand Down
3 changes: 2 additions & 1 deletion parachains/runtimes/bridge-hubs/bridge-hub-rococo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ sp-session = { git = "/~https://github.com/paritytech/substrate", default-features
sp-std = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-transaction-pool = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-version = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
mangata-types = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }
mangata-support = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }

# Polkadot
rococo-runtime-constants = { git = "/~https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.36" }
Expand Down Expand Up @@ -127,6 +127,7 @@ std = [
"xcm-builder/std",
"xcm-executor/std",
"xcm/std",
"mangata-support/std"
]

runtime-benchmarks = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ mod weights;
pub mod xcm_config;

use cumulus_pallet_parachain_system::RelayNumberStrictlyIncreases;
use mangata_types::traits::GetMaintenanceStatusTrait;
use mangata_support::traits::GetMaintenanceStatusTrait;
use smallvec::smallvec;
use sp_api::impl_runtime_apis;
use sp_core::{crypto::KeyTypeId, OpaqueMetadata};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ sp-session = { git = "/~https://github.com/paritytech/substrate", default-features
sp-std = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-transaction-pool = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-version = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
mangata-types = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }
mangata-support = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }

# Polkadot
pallet-xcm = { git = "/~https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.36" }
Expand Down Expand Up @@ -171,4 +171,5 @@ std = [
"pallet-collator-selection/std",
"parachain-info/std",
"parachains-common/std",
"mangata-support/std"
]
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pub mod xcm_config;

use cumulus_pallet_parachain_system::RelayNumberStrictlyIncreases;
use impls::{AllianceProposalProvider, ToParentTreasury};
use mangata_types::traits::GetMaintenanceStatusTrait;
use mangata_support::traits::GetMaintenanceStatusTrait;
use sp_api::impl_runtime_apis;
use sp_core::{crypto::KeyTypeId, OpaqueMetadata};
use sp_runtime::{
Expand Down
3 changes: 2 additions & 1 deletion parachains/runtimes/contracts/contracts-rococo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pallet-utility = { git = "/~https://github.com/paritytech/substrate", default-feat
pallet-sudo = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
pallet-contracts = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
pallet-contracts-primitives = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
mangata-types = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }
mangata-support = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }

# Polkadot
kusama-runtime-constants = { git = "/~https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.36" }
Expand Down Expand Up @@ -130,6 +130,7 @@ std = [
"cumulus-primitives-core/std",
"cumulus-primitives-timestamp/std",
"cumulus-primitives-utility/std",
"mangata-support/std"
]

runtime-benchmarks = [
Expand Down
2 changes: 1 addition & 1 deletion parachains/runtimes/contracts/contracts-rococo/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ mod weights;
mod xcm_config;

use cumulus_pallet_parachain_system::RelayNumberStrictlyIncreases;
use mangata_types::traits::GetMaintenanceStatusTrait;
use mangata_support::traits::GetMaintenanceStatusTrait;
use sp_api::impl_runtime_apis;
use sp_core::{crypto::KeyTypeId, OpaqueMetadata};
use sp_runtime::{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use frame_support::{
traits::{EitherOfDiverse, Everything, Nothing},
};
use frame_system::EnsureRoot;
use mangata_types::traits::GetMaintenanceStatusTrait;
use mangata_support::traits::GetMaintenanceStatusTrait;
use pallet_xcm::{EnsureXcm, IsMajorityOfBody, XcmPassthrough};
use parachains_common::xcm_config::{DenyReserveTransferToRelayChain, DenyThenTry};
use polkadot_parachain::primitives::Sibling;
Expand Down
3 changes: 2 additions & 1 deletion parachains/runtimes/starters/seedling/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ sp-session = { git = "/~https://github.com/paritytech/substrate", default-features
sp-std = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-transaction-pool = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-version = { git = "/~https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
mangata-types = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }
mangata-support = { git = "/~https://github.com/mangata-finance/substrate", default-features = false, branch = "mangata-dev" }

# Cumulus
cumulus-pallet-parachain-system = { path = "../../../../pallets/parachain-system", default-features = false }
Expand Down Expand Up @@ -61,4 +61,5 @@ std = [
"cumulus-primitives-core/std",
"parachain-info/std",
"parachains-common/std",
"mangata-support/std"
]
2 changes: 1 addition & 1 deletion parachains/runtimes/starters/seedling/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs"));

use cumulus_pallet_parachain_system::RelayNumberStrictlyIncreases;
use mangata_types::traits::GetMaintenanceStatusTrait;
use mangata_support::traits::GetMaintenanceStatusTrait;
use sp_api::impl_runtime_apis;
use sp_core::OpaqueMetadata;
use sp_runtime::{
Expand Down
Loading

0 comments on commit 4fd770d

Please sign in to comment.