From 97a58002215b736b8905f3afe518910bb6e7cf59 Mon Sep 17 00:00:00 2001 From: Bryan Chen Date: Sun, 28 Apr 2024 14:26:11 +1200 Subject: [PATCH] update unbonding period --- runtime/acala/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/acala/src/lib.rs b/runtime/acala/src/lib.rs index 213758797..81ba475c3 100644 --- a/runtime/acala/src/lib.rs +++ b/runtime/acala/src/lib.rs @@ -1724,7 +1724,7 @@ impl module_liquid_crowdloan::Config for Runtime { parameter_types! { pub MinBond: Balance = 100 * dollar(ACA); - pub const UnbondingPeriod: BlockNumber = 28 * DAYS; + pub const UnbondingPeriod: BlockNumber = 14 * DAYS; pub const EarningLockIdentifier: LockIdentifier = *b"aca/earn"; }