From d81c21c994c3a9927153ea5fd7f900dfe4761039 Mon Sep 17 00:00:00 2001 From: kdeme Date: Fri, 24 Nov 2023 11:10:59 +0100 Subject: [PATCH] Adjust fluffy cli arguments for portal-bridge There has been a breaking change from --storage-size to --storage-capacity. The IP limits have been set for now to higher defaults. As the network setting is default now the mainnet "testnet". --- portal-bridge/src/client_handles.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/portal-bridge/src/client_handles.rs b/portal-bridge/src/client_handles.rs index 3dcb79b8e..01f8f5433 100644 --- a/portal-bridge/src/client_handles.rs +++ b/portal-bridge/src/client_handles.rs @@ -15,14 +15,11 @@ pub fn fluffy_handle( let ip = stun_for_external(&listen_all_ips).expect("to stun for external ip"); command .kill_on_drop(true) - .arg("--storage-size:0") + .arg("--storage-capacity:0") .arg("--rpc") .arg(format!("--rpc-port:{rpc_port}")) .arg(format!("--udp-port:{udp_port}")) .arg(format!("--nat:extip:{}", ip.ip())) - .arg("--network:testnet0") - .arg("--table-ip-limit:1024") - .arg("--bucket-ip-limit:24") .arg(format!("--netkey-unsafe:{private_key}")); if let Some(metrics_url) = bridge_config.metrics_url { let address = match metrics_url.host_str() {