From 244375e1e0707939a6afcbeb64e9c8597f8828d0 Mon Sep 17 00:00:00 2001 From: Dariia Porechna <35382599+dariolina@users.noreply.github.com> Date: Thu, 21 Dec 2023 11:23:06 +0100 Subject: [PATCH] Set MIN_REPLICATION_FACTOR to proper value https://forum.subspace.network/t/calculating-fraction-of-missing-pieces/1967/4?u=dariolina --- crates/subspace-runtime-primitives/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/subspace-runtime-primitives/src/lib.rs b/crates/subspace-runtime-primitives/src/lib.rs index 6fff3bdbb9..0af777c0cf 100644 --- a/crates/subspace-runtime-primitives/src/lib.rs +++ b/crates/subspace-runtime-primitives/src/lib.rs @@ -27,8 +27,7 @@ pub use subspace_core_primitives::BlockNumber; /// Minimum desired number of replicas of the blockchain to be stored by the network, /// impacts storage fees. -// TODO: Proper value here -pub const MIN_REPLICATION_FACTOR: u16 = 1; +pub const MIN_REPLICATION_FACTOR: u16 = 50; /// How much (ratio) of storage fees escrow should be given to farmer each block as a reward. // TODO: Proper value here pub const STORAGE_FEES_ESCROW_BLOCK_REWARD: (u64, u64) = (1, 10000);