-
Notifications
You must be signed in to change notification settings - Fork 0
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
Sync latest changes #2
base: thiserror
Are you sure you want to change the base?
Conversation
src/client.rs
Outdated
use std::{str::FromStr, sync::Arc}; | ||
|
||
#[async_trait] | ||
pub trait GetBlobData: Clone + std::fmt::Debug + Send + Sync { |
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.
We should add documentation to this public trait.
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.
Done
} | ||
} | ||
|
||
#[ignore = "depends on external RPC"] |
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.
Should we keep this tests ignored? The reason we ignored them was to prevent making the zksync-era CI fail due to external issues, now that this is on it's own, it should be a problem.
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.
It will still make a CI fail here too
This PR syncs the latest changes made to the client from zksync-era repository.