From 76a72b05f9e14aa19c97a46e251c64812d1aa073 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 4ce66fc91..9d926beb1 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 a0fd6ab03..9d6c3f752 100644 --- a/runtimes/polimec/src/lib.rs +++ b/runtimes/polimec/src/lib.rs @@ -1069,6 +1069,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));