From 6e1c1a44c716a4a5f0889236c7a80e34abe1aa2c Mon Sep 17 00:00:00 2001 From: Xiliang Chen Date: Sun, 28 Apr 2024 15:02:37 +1200 Subject: [PATCH] update unbonding period (#2742) --- 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 2137587970..81ba475c3b 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"; }