Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
fix: bump grpc version
Browse files Browse the repository at this point in the history
  • Loading branch information
atanmarko committed Sep 6, 2023
1 parent 5aba98d commit cb63a66
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/topos-api/proto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@topos-protocol/topos-grpc-client-stub",
"version": "0.1.3",
"version": "0.1.4",
"description": "JavaScript gRPC client stub for topos-api",
"files": [
"generated"
Expand Down
9 changes: 7 additions & 2 deletions crates/topos-tce-proxy/src/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ impl TceProxyWorker {
};

info!(
"Last pending certificate is: {:?}",
"Last certificate is pending certificate is: {:?}",
source_last_generated_certificate
);

Expand All @@ -66,7 +66,12 @@ impl TceProxyWorker {
Err(e) => {
return Err(e);
}
}
};

info!(
"Last certificate is delivered certificate: {:?}",
source_last_generated_certificate
);
}

tokio::spawn(async move {
Expand Down

0 comments on commit cb63a66

Please sign in to comment.