Skip to content

Commit fda175a

Browse files
author
Max Gravitt
committed
coupled gated marketplaces back to fruniques, changed para_id, and increases MaxProposalsPerVault
1 parent 98896db commit fda175a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

collator/src/chain_spec/md5.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ pub fn get_chain_spec() -> Md5ChainSpec {
6060
],
6161
// 5HgAxuAcEybo448w5BZdoceCuHMAbEW9AetBKsj9s5GEBZT3
6262
hex!["f83a0218e100ce3ede12c5d403116ef034124c62b181fff6935403cea9396d2f"].into(),
63-
4088.into(),
63+
2089.into(),
6464
)
6565
},
6666
Vec::new(),
@@ -70,7 +70,7 @@ pub fn get_chain_spec() -> Md5ChainSpec {
7070
Some(properties),
7171
Extensions {
7272
relay_chain: "rococo".into(), // You MUST set this to the correct network!
73-
para_id: 4088,
73+
para_id: 2089,
7474
},
7575
)
7676
}

collator/src/chain_spec/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub fn get_public_from_seed<TPublic: Public>(seed: &str) -> <TPublic::Pair as Pa
2929
/// Additional parameters for some Substrate core modules,
3030
/// customizable from the chain spec.
3131
#[derive(Default, Clone, Serialize, Deserialize, ChainSpecExtension)]
32-
#[serde(rename_all = "camelCase")]
32+
#[serde(deny_unknown_fields)]
3333
pub struct Extensions {
3434
/// The relay chain of the Parachain.
3535
pub relay_chain: String,

pallets/gated-marketplace/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pub mod pallet {
2727
pub type BalanceOf<T> = <<T as pallet_uniques::Config>::Currency as Currency<<T as frame_system::Config>::AccountId>>::Balance;
2828

2929
#[pallet::config]
30-
pub trait Config: frame_system::Config + pallet_uniques::Config{
30+
pub trait Config: frame_system::Config + pallet_fruniques::Config{
3131

3232
type Event: From<Event<Self>> + IsType<<Self as frame_system::Config>::Event>;
3333

parachain-runtime/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ parameter_types! {
751751
pub const MaxCosignersPerVault: u32 = 7;
752752
pub const VaultDescriptionMaxLen: u32 = 200;
753753
pub const OutputDescriptorMaxLen: u32 = 2048;
754-
pub const MaxProposalsPerVault: u32 = 5;
754+
pub const MaxProposalsPerVault: u32 = 100;
755755
}
756756

757757
impl pallet_bitcoin_vaults::Config for Runtime {

0 commit comments

Comments
 (0)