Skip to content

Commit

Permalink
fix(da-clients): enable tls-roots feature for tonic (#3201)
Browse files Browse the repository at this point in the history
## What ❔

Enable `tls-roots` feature in `tonic` crate.


## Why ❔

Without this feature, the connection with the Eigen disperser can't be
established

## Checklist

<!-- Check your PR fulfills the following items. -->
<!-- For draft PRs check the boxes as you complete them. -->

- [ ] PR title corresponds to the body of PR (we generate changelog
entries from PRs).
- [ ] Tests for the changes have been added / updated.
- [ ] Documentation comments have been added / updated.
- [ ] Code has been formatted via `zkstack dev fmt` and `zkstack dev
lint`.
  • Loading branch information
dimazhornyk authored Oct 30, 2024
1 parent 8db7e93 commit 42f177a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/node/da_clients/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ sha2.workspace = true
prost.workspace = true
bech32.workspace = true
ripemd.workspace = true
tonic = { workspace = true, features = ["tls", "default"] }
tonic = { workspace = true, features = ["tls", "tls-roots", "prost", "codegen"] }
pbjson-types.workspace = true

# Eigen dependencies
Expand Down

0 comments on commit 42f177a

Please sign in to comment.