-
Notifications
You must be signed in to change notification settings - Fork 84
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
[WEEKLY RELEASE] HotShot - rc-0.5.78 #2184
Conversation
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.
As mentioned on Zulip I think we should use the new HotShot tag rather than the branch name in Cargo.toml
. Everything else looks good!
…sequencer into bump/rc-0.5.78
@@ -161,7 +151,7 @@ async fn run<V: Versions>( | |||
opt.hotshot_event_streaming_url, | |||
builder_server_url, | |||
api_response_timeout_duration, | |||
buffer_view_num_count, | |||
ChainConfig::default().max_block_size.into(), |
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.
Uhh @shenkeyao why are we defaulting this? This should come from the actual chain config, e.g. instance_state.chain_config.max_block_size
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.
Good catch, updated! Using instance_state.chain_config
also allows us to simplify the function by removing this argument, since we already have instance_state
as an arg.
No description provided.