Skip to content

Commit a345d35

Browse files
authored
Fix mandatory parameter in health endpoints (#869)
* write serde(default) for scalar health parameter * fix clippy
1 parent 7af10d2 commit a345d35

File tree

7 files changed

+22
-2
lines changed

7 files changed

+22
-2
lines changed

da-indexer/da-indexer-logic/src/celestia/repository/blobs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ pub async fn upsert_many<C: ConnectionTrait>(
7272

7373
fn compute_id(height: u64, commitment: &[u8]) -> Vec<u8> {
7474
// commitment is not unique, but the combination of the height and commitment is
75-
Sha3_256::digest([&height.to_be_bytes()[..], &commitment].concat())
75+
Sha3_256::digest([&height.to_be_bytes()[..], commitment].concat())
7676
.as_slice()
7777
.to_vec()
7878
}

da-indexer/da-indexer-proto/build.rs

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ fn compile(
1818
.bytes(["."])
1919
.btree_map(["."])
2020
.type_attribute(".", "#[actix_prost_macros::serde]")
21+
.field_attribute(
22+
".blockscout.daIndexer.v1.HealthCheckRequest.service",
23+
"#[serde(default)]"
24+
)
2125
// .field_attribute(
2226
// ".blockscout.daIndexer.v1.<MessageName>.<DefaultFieldName>",
2327
// "#[serde(default)]"

sig-provider/sig-provider-proto/build.rs

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ fn compile(
1717
.protoc_arg("grpc_api_configuration=proto/api_config_http.yaml,output_format=yaml,allow_merge=true,merge_file_name=sig-provider")
1818
.bytes(["."])
1919
.type_attribute(".", "#[actix_prost_macros::serde]")
20+
.field_attribute(
21+
".blockscout.sig_provider.v1.HealthCheckRequest.service",
22+
"#[serde(default)]"
23+
)
2024
.message_attribute(".", "#[derive(Eq, Hash)]");
2125
config.compile_protos(protos, includes)?;
2226
Ok(())

smart-contract-verifier/smart-contract-verifier-proto/build.rs

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ fn compile(
1818
.bytes(["."])
1919
.btree_map(["."])
2020
.type_attribute(".", "#[actix_prost_macros::serde]")
21+
.field_attribute(
22+
".blockscout.smartContractVerifier.v2.HealthCheckRequest.service",
23+
"#[serde(default)]"
24+
)
2125
.field_attribute(
2226
".blockscout.smartContractVerifier.v2.VerifyVyperMultiPartRequest.interfaces",
2327
"#[serde(default)]"

stats/stats-proto/build.rs

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ fn compile(
1717
.protoc_arg("grpc_api_configuration=proto/api_config_http.yaml,output_format=yaml,allow_merge=true,merge_file_name=stats")
1818
.bytes(["."])
1919
.type_attribute(".", "#[actix_prost_macros::serde]")
20+
.field_attribute(
21+
".blockscout.stats.v1.HealthCheckRequest.service",
22+
"#[serde(default)]"
23+
)
2024
.field_attribute(".blockscout.stats.v1.Point.is_approximate", "#[serde(skip_serializing_if = \"std::ops::Not::not\")]")
2125
.field_attribute(".blockscout.stats.v1.Point.is_approximate", "#[serde(default)]");
2226

user-ops-indexer/user-ops-indexer-logic/src/indexer/rpc_utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ fn flatten_geth_trace(root: CallFrame) -> Vec<CommonCallTrace> {
123123
}
124124
if let Some(calls) = &frame.calls {
125125
if calls.len() > idx {
126-
path.push((&frame, idx + 1));
126+
path.push((frame, idx + 1));
127127
path.push((&calls[idx], 0));
128128
}
129129
}

user-ops-indexer/user-ops-indexer-proto/build.rs

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ fn compile(
1717
.protoc_arg("grpc_api_configuration=proto/api_config_http.yaml,output_format=yaml,allow_merge=true,merge_file_name=user-ops-indexer,json_names_for_fields=false")
1818
.bytes(["."])
1919
.type_attribute(".", "#[actix_prost_macros::serde(rename_all=\"snake_case\")]")
20+
.field_attribute(
21+
".blockscout.userOpsIndexer.v1.HealthCheckRequest.service",
22+
"#[serde(default)]"
23+
)
2024
.field_attribute(".blockscout.userOpsIndexer.v1.UserOp.raw", "#[serde(rename=\"raw\")]");
2125

2226
config.compile_protos(protos, includes)?;

0 commit comments

Comments
 (0)