-
Notifications
You must be signed in to change notification settings - Fork 2.6k
ed25519: Don't panic for invalid signature #12965
Conversation
We should not panic for an invalid signature when the `UseDalekExt` is given.
The CI pipeline was cancelled due to failure one of the required jobs. |
The CI pipeline was cancelled due to failure one of the required jobs. |
# Force the usage of ed25519, this is being used in `ed25519-dalek`. | ||
ed25519 = { version = "1.5.2", optional = true } |
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.
# Force the usage of ed25519, this is being used in `ed25519-dalek`. | |
ed25519 = { version = "1.5.2", optional = true } |
Why you need this? We are using ed25519
from sp-core
crate
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.
I don't have found it there :P
@@ -59,6 +63,7 @@ std = [ | |||
"futures", | |||
"parking_lot", | |||
"ed25519-dalek", | |||
"ed25519", |
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.
"ed25519", |
* ed25519: Don't panic for invalid signature We should not panic for an invalid signature when the `UseDalekExt` is given. * Update Cargo.toml * Update primitives/io/Cargo.toml
* ed25519: Don't panic for invalid signature We should not panic for an invalid signature when the `UseDalekExt` is given. * Update Cargo.toml * Update primitives/io/Cargo.toml
We should not panic for an invalid signature when the
UseDalekExt
is given.