Skip to content

Commit

Permalink
fix(view): cnidarium proto imports
Browse files Browse the repository at this point in the history
  • Loading branch information
conorsch committed Jan 13, 2025
1 parent 85c98d6 commit 2e4ee89
Show file tree
Hide file tree
Showing 3 changed files with 4 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.

1 change: 1 addition & 0 deletions crates/view/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ async-stream = {workspace = true}
async-trait = {workspace = true}
bytes = {workspace = true, features = ["serde"]}
camino = {workspace = true}
cnidarium = {workspace = true, features = ["rpc"]}
decaf377 = {workspace = true, features = ["r1cs"], default-features = true}
digest = "0.9"
ed25519-consensus = {workspace = true}
Expand Down
3 changes: 2 additions & 1 deletion crates/view/src/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,8 @@ async fn sct_divergence_check(
height: u64,
actual_root: penumbra_tct::Root,
) -> anyhow::Result<()> {
use penumbra_proto::{cnidarium::v1::query_service_client::QueryServiceClient, DomainType};
use cnidarium::proto::v1::query_service_client::QueryServiceClient;
use penumbra_proto::DomainType;
use penumbra_sct::state_key as sct_state_key;

let mut client = QueryServiceClient::new(channel);
Expand Down

0 comments on commit 2e4ee89

Please sign in to comment.