From b3b68ae82c7f44dd2a5e13b6c8c0b4b802ae1cdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20=C5=BBuk?= Date: Thu, 9 May 2024 13:41:55 +0200 Subject: [PATCH] Make testnet treasury spend period 1h --- substrate/bin/node/runtime/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrate/bin/node/runtime/src/lib.rs b/substrate/bin/node/runtime/src/lib.rs index 9e458d4a4b..500bb16912 100644 --- a/substrate/bin/node/runtime/src/lib.rs +++ b/substrate/bin/node/runtime/src/lib.rs @@ -293,7 +293,7 @@ parameter_types! { pub const EnactmentPeriod: BlockNumber = 1 * DAYS; pub const AssetName: &'static str = "Liberland Kuna"; pub const AssetSymbol: &'static str = "LKN"; - pub const SpendPeriod: BlockNumber = 10; + pub const SpendPeriod: BlockNumber = 60 * MINUTES; } impl pallet_utility::Config for Runtime {