Skip to content

Commit

Permalink
fix: use newer handshake via Pallas update (#826)
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega authored Oct 23, 2024
1 parent e1b9713 commit b57544b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ authors = ["Santiago Carmuega <[email protected]>"]


[dependencies]
pallas-multiplexer = "0.18.2"
pallas-miniprotocols = "0.18.2"
pallas-multiplexer = "0.18.3"
pallas-miniprotocols = "0.18.3"
pallas-primitives = "0.30.1"
pallas-traverse = "0.30.1"
pallas-addresses = "0.30.1"
Expand Down
2 changes: 1 addition & 1 deletion src/sources/n2n/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ enum AttemptError {

fn do_handshake(channel: StdChannel, magic: u64) -> Result<(), AttemptError> {
let mut client = handshake::N2NClient::new(channel);
let versions = handshake::n2n::VersionTable::v4_and_above(magic);
let versions = handshake::n2n::VersionTable::v7_and_above(magic);

match client.handshake(versions) {
Ok(confirmation) => match confirmation {
Expand Down

0 comments on commit b57544b

Please sign in to comment.