From 54f2f58958d06924e4580782adf5041243c148be Mon Sep 17 00:00:00 2001 From: Juan Ignacio Rios Date: Thu, 8 Aug 2024 13:42:07 +0200 Subject: [PATCH] Change max schedules linear-release --- pallets/funding/src/tests/6_settlement.rs | 4 ++++ runtimes/polimec/src/lib.rs | 1 + 2 files changed, 5 insertions(+) diff --git a/pallets/funding/src/tests/6_settlement.rs b/pallets/funding/src/tests/6_settlement.rs index 83b640c6d..de64a62ab 100644 --- a/pallets/funding/src/tests/6_settlement.rs +++ b/pallets/funding/src/tests/6_settlement.rs @@ -109,6 +109,10 @@ mod start_settlement_extrinsic { assert_eq!(::ContributionTokenCurrency::asset_exists(project_id), false) }); } + + #[test] + fn vesting_schedules_are_merged() { + let mut inst = } #[cfg(test)] diff --git a/runtimes/polimec/src/lib.rs b/runtimes/polimec/src/lib.rs index 0a3a18e8b..c5b754b91 100644 --- a/runtimes/polimec/src/lib.rs +++ b/runtimes/polimec/src/lib.rs @@ -1068,6 +1068,7 @@ impl pallet_funding::Config for Runtime { type WeightInfo = weights::pallet_funding::WeightInfo; } + #[cfg(feature = "runtime-benchmarks")] parameter_types! { pub BenchmarkReason: RuntimeHoldReason = RuntimeHoldReason::Funding(pallet_funding::HoldReason::Participation(0));