From c32ccc2b1ccc730c12e6bd2b5944cc1e38f5f41a Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Mon, 16 Dec 2024 14:14:22 +0100 Subject: [PATCH] adjust minimum stake amount --- rollup/runtime/src/runtime_config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rollup/runtime/src/runtime_config.rs b/rollup/runtime/src/runtime_config.rs index ce0e2d395..6c4bee6e5 100644 --- a/rollup/runtime/src/runtime_config.rs +++ b/rollup/runtime/src/runtime_config.rs @@ -980,7 +980,7 @@ pub mod config { 1 * currency::DOLLARS } else { // ACTUAL - 1_000_000 * currency::DOLLARS + 500_000 * currency::DOLLARS }; /// Minimum stake required to be reserved to be a delegator pub const MinDelegatorStk: u128 = 1 * currency::CENTS;