-
Notifications
You must be signed in to change notification settings - Fork 14
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
fix: self-building payloads in kurtosis devnet #104
Conversation
Co-authored-by: thedevbirb <lorenzo@chainbound.io>
Co-authored-by: thedevbirb <lorenzo@chainbound.io>
f4ff126
to
a20a4eb
Compare
get_header
response with fallback payloads// TODO: add included blobs here | ||
blobs_bundle: None, | ||
blobs_bundle: Default::default(), |
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 an issue for this: support blobs across the self building pipeline
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.
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.
LFG
/// Get the slot time for the given chain in seconds. | ||
pub fn slot_time(&self) -> u64 { | ||
match self { | ||
Chain::Mainnet => 12, | ||
Chain::Holesky => 12, | ||
Chain::Kurtosis => 2, | ||
Chain::Helder => 12, | ||
} | ||
} |
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'd still keep the slot time as a separate CLI arg, with default 12, in case we want to run the devnet with a more realistic slot time. We can do it in a separate PR
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.
Yeah we should refactor the Chain
configs to another file perhaps
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.
get_header
response with fallback payloads