Skip to content

Commit

Permalink
Set MIN_REPLICATION_FACTOR to proper value
Browse files Browse the repository at this point in the history
  • Loading branch information
dariolina committed Dec 21, 2023
1 parent f76fb31 commit 244375e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/subspace-runtime-primitives/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 244375e

Please sign in to comment.