-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
chore(deps): bump breaking deps #14570
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
try latest discv5
@@ -569,7 +569,7 @@ tower = "0.4" | |||
tower-http = "0.6" | |||
|
|||
# p2p | |||
discv5 = "0.8.0" | |||
discv5 = "0.9" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
discv5 = "0.9" | |
discv5 = "0.9.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated the failing test
@@ -122,7 +122,7 @@ impl Message { | |||
// Serialize the signature and append it to the signature bytes | |||
let (rec, sig) = signature.serialize_compact(); | |||
sig_bytes.extend_from_slice(&sig); | |||
sig_bytes.put_u8(rec.to_i32() as u8); | |||
sig_bytes.put_u8(i32::from(rec) as u8); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
assert!(matches!( | ||
event_2_v5, | ||
discv5::Event::SessionEstablished(node, socket) if node == node_1_enr && socket == node_1_enr.udp4_socket().unwrap().into() | ||
)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is an internal discv5 event change so this established event is no longer emitted
this is 0.9.1 in the lockfile already
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
secp256k1 breaking change wow didnt see this one coming ever
Blocked on: