-
Notifications
You must be signed in to change notification settings - Fork 5
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
A0-4251: Avoid resumbissions on Aleph via better handling loop #177
Conversation
e2e-tests/Cargo.toml
Outdated
@@ -4,7 +4,7 @@ version = "0.1.0" | |||
edition = "2021" | |||
|
|||
[dependencies] | |||
aleph_client = { git = "https://github.com/Cardinal-Cryptography/aleph-node/", rev = "d52ede9" } | |||
aleph_client = { git = "https://github.com/Cardinal-Cryptography/aleph-node/", rev = "c3c6d8b37d586b6b050d1e40675dd6b4ab6adcdb" } |
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.
just a heads up. You probably want to cherry-pick changes to aleph-client into release-13. Othwewise relayer build upon this pr wont be working before the next testnet release.
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.
Will update once Cardinal-Cryptography/aleph-node#1704 is merged
relayer/Cargo.toml
Outdated
@@ -3,7 +3,7 @@ members = ["relayer", "signer_client", "signer", "signer_tester"] | |||
resolver = "2" | |||
|
|||
[workspace.dependencies] | |||
aleph_client = { git = "https://github.com/Cardinal-Cryptography/aleph-node", rev = "r-13.2" } | |||
aleph_client = { git = "https://github.com/Cardinal-Cryptography/aleph-node", rev = "c3c6d8b37d586b6b050d1e40675dd6b4ab6adcdb" } |
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.
and I meant the comment to be here actually
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.
looks good, nice work
Improved loop in ETH handler based on Azero handler. For this, I have introduced some changes in aleph-client: Cardinal-Cryptography/aleph-node#1679.