-
Notifications
You must be signed in to change notification settings - Fork 49
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
Improve batch handling #316
Conversation
processor/messages/src/lib.rs
Outdated
@@ -61,6 +62,7 @@ pub mod sign { | |||
pub struct SignId { | |||
pub key: Vec<u8>, | |||
pub id: [u8; 32], | |||
pub block: Option<BlockHash>, |
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.
Why is this an Option? Due to the SignId reuse for Batch?
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.
Yes. It is used in SignId for batches but not in coordinator/tributary/scanner
see my reply to #316 (comment) as well
8ab595b
to
2df8bf6
Compare
Doesn't yet update tests/processor until data flow is inspected.
fixes #280 alongside some improvements