Skip to content

Commit

Permalink
Merge branch 'main' into collin/pubsub
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrit committed Jun 27, 2023
2 parents f9b1e99 + 76e1a19 commit 8388b4b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2473,6 +2473,7 @@ google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlba
google.golang.org/protobuf v1.25.1-0.20200805231151-a709e31e5d12/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ=
google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
Expand Down
1 change: 1 addition & 0 deletions src/commands/start.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ use crate::{
proposals::start_scheduled_cork_proposal_polling_thread,
},
prelude::*,
proto::contract_call_service_server::ContractCallServiceServer,
pubsub::cache::start_publisher_trust_state_cache_thread,
server::start_server_management_thread,
};
Expand Down
3 changes: 3 additions & 0 deletions src/simulate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ impl proto::simulate_contract_call_service_server::SimulateContractCallService f
pub fn get_string_encoded_call(request: ScheduleRequest) -> Result<String, Error> {
get_encoded_call(request).map(|b| bytes_to_hex_str(&b))
}
<<<<<<< HEAD

pub fn validate_simulate_tls_config(config: &StewardConfig) {
if config.simulate.server_cert_path.is_empty() {
Expand Down Expand Up @@ -114,3 +115,5 @@ pub async fn load_simulate_tls_config(
.identity(server_identity.clone())
.client_ca_root(client_ca_cert))
}
=======
>>>>>>> main

0 comments on commit 8388b4b

Please sign in to comment.