Skip to content

Commit

Permalink
HTTP2 Connection Should be Used for DA Tool (#1085)
Browse files Browse the repository at this point in the history
  • Loading branch information
l-monninger authored Mar 6, 2025
1 parent d963665 commit 88d12fb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ impl StreamBlocks {
pub async fn execute(&self) -> Result<(), anyhow::Error> {
// Get the config

let mut client = MovementDaLightNodeClient::try_http1(self.light_node_url.as_str())
let mut client = MovementDaLightNodeClient::try_http2(self.light_node_url.as_str())
.await
.context("Failed to connect to light node")?;

let mut blocks_from_da = client
Expand Down

0 comments on commit 88d12fb

Please sign in to comment.