Skip to content

Commit

Permalink
fix seed node port, bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Ash-L2L committed Jun 5, 2024
1 parent c0bdbd1 commit 7b75c0c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ authors = [
"Nikita Chashchinskii <[email protected]>"
]
edition = "2021"
version = "0.8.11"
version = "0.8.12"

[workspace.dependencies.bip300301]
git = "https://github.com/Ash-L2L/bip300301.git"
Expand Down
4 changes: 2 additions & 2 deletions lib/net/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use parking_lot::RwLock;
use quinn::{ClientConfig, Endpoint, ServerConfig};
use tokio_stream::StreamNotifyClose;

use crate::{archive::Archive, state::State, types::AuthorizedTransaction};
use crate::{archive::Archive, node::THIS_SIDECHAIN, state::State, types::AuthorizedTransaction};

mod peer;

Expand Down Expand Up @@ -176,7 +176,7 @@ impl Net {
std::net::IpAddr::V4(std::net::Ipv4Addr::new(
172, 105, 148, 135,
)),
3820,
4000 + THIS_SIDECHAIN as u16,
);
known_peers.put(&mut rwtxn, &SEED_NODE_ADDR, &())?;
known_peers
Expand Down

0 comments on commit 7b75c0c

Please sign in to comment.