-
Notifications
You must be signed in to change notification settings - Fork 26
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
refactor(starknet_batcher): add getters to the proposal manger #2480
refactor(starknet_batcher): add getters to the proposal manger #2480
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2480 +/- ##
==========================================
- Coverage 40.10% 6.22% -33.88%
==========================================
Files 26 141 +115
Lines 1895 17113 +15218
Branches 1895 17113 +15218
==========================================
+ Hits 760 1066 +306
- Misses 1100 15989 +14889
- Partials 35 58 +23 ☔ View full report in Codecov by Sentry. |
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.
Reviewable status: 0 of 2 files reviewed, 1 unresolved discussion (waiting on @alonh5 and @dafnamatsry)
crates/starknet_batcher/src/proposal_manager.rs
line 93 at r1 (raw file):
pub abort_signal_sender: tokio::sync::oneshot::Sender<()>, pub join_handle: tokio::task::JoinHandle<()>, }
why is the pub required?
Code quote:
pub struct ProposalTask {
pub abort_signal_sender: tokio::sync::oneshot::Sender<()>,
pub join_handle: tokio::task::JoinHandle<()>,
}
f37c942
to
b241765
Compare
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.
Reviewable status: 0 of 2 files reviewed, 1 unresolved discussion (waiting on @alonh5 and @Yael-Starkware)
crates/starknet_batcher/src/proposal_manager.rs
line 93 at r1 (raw file):
Previously, Yael-Starkware (YaelD) wrote…
why is the pub required?
Removed. (left by mistake)
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.
Reviewed 1 of 2 files at r1, 1 of 1 files at r2, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @alonh5)
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.
Reviewed 1 of 2 files at r1, 1 of 1 files at r2, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @dafnamatsry)
No description provided.