Skip to content

Commit

Permalink
Merge pull request #2364 from subspace/min-replication-factor
Browse files Browse the repository at this point in the history
Set MIN_REPLICATION_FACTOR to proper value
  • Loading branch information
nazar-pc authored Dec 21, 2023
2 parents f76fb31 + 244375e commit c9fc868
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 c9fc868

Please sign in to comment.