Skip to content

Commit cbf0baf

Browse files
authored
chore: bump relay max bandwidth to 100MiB (#21)
1 parent b522c6e commit cbf0baf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = [".", "examples/dcutr", "examples/chat", "examples/autonat"]
33

44
[package]
55
name = "boot-node"
6-
version = "0.5.1"
6+
version = "0.5.2"
77
authors = ["Calimero Limited <[email protected]>"]
88
edition = "2021"
99
repository = "https://github.com/calimero-network/boot-node"

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use tracing_subscriber::EnvFilter;
1212

1313
const PROTOCOL_VERSION: &str = concat!("/", env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION"));
1414
const CALIMERO_KAD_PROTO_NAME: StreamProtocol = StreamProtocol::new("/calimero/kad/1.0.0");
15-
const MAX_RELAY_CIRCUIT_BYTES: u64 = 8 << 20; // 8 MiB
15+
const MAX_RELAY_CIRCUIT_BYTES: u64 = 100 << 20; // 100 MiB
1616

1717
#[derive(NetworkBehaviour)]
1818
struct Behaviour {

0 commit comments

Comments
 (0)