Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: new behavior for network bootstrapping #1257

Open
wants to merge 16 commits into
base: main
Choose a base branch
from
1 change: 0 additions & 1 deletion signer/src/context/signer_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,6 @@ impl SbtcLimits {
self.max_mintable_cap.unwrap_or(Amount::MAX_MONEY)
}

/// TODO: Document this
#[cfg(test)]
/// Create a new Self with only the given deposit minimum and maximums
/// set.
Expand Down
1 change: 1 addition & 0 deletions signer/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ async fn run_libp2p_swarm(ctx: impl Context) -> Result<(), Error> {
.add_external_addresses(&ctx.config().signer.p2p.public_endpoints)
.enable_mdns(config.signer.p2p.enable_mdns)
.enable_quic_transport(enable_quic)
.with_initial_bootstrap_delay(Duration::from_secs(3))
.build()?;

// Start the libp2p swarm. This will run until either the shutdown signal is
Expand Down
Loading