From 10452154d228fc5e82179c1e331a456b0412fbf4 Mon Sep 17 00:00:00 2001 From: teor Date: Tue, 10 Dec 2024 10:01:38 +1000 Subject: [PATCH] Remove duplicate constants caused by incorrect GitHub auto-merge --- crates/subspace-gateway/src/commands.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/crates/subspace-gateway/src/commands.rs b/crates/subspace-gateway/src/commands.rs index 3c7325354a..439add72bf 100644 --- a/crates/subspace-gateway/src/commands.rs +++ b/crates/subspace-gateway/src/commands.rs @@ -31,11 +31,6 @@ pub const DEFAULT_MAX_SIZE: usize = 5 * 1024 * 1024; /// Multiplier on top of outgoing connections number for piece downloading purposes const PIECE_PROVIDER_MULTIPLIER: usize = 10; -/// The default size limit, based on the maximum block size in some domains. -pub const DEFAULT_MAX_SIZE: usize = 5 * 1024 * 1024; -/// Multiplier on top of outgoing connections number for piece downloading purposes -const PIECE_PROVIDER_MULTIPLIER: usize = 10; - /// Commands for working with a gateway. #[derive(Debug, Parser)] #[clap(about, version)]