Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deprecate old heartbeat invalid reason; add new correct one #321

Merged
merged 1 commit into from
Apr 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/service/poc_mobile.proto
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,12 @@ message heartbeat {

enum heartbeat_validity {
heartbeat_validity_valid = 0;
heartbeat_validity_gateway_owner_not_found = 1;
heartbeat_validity_gateway_owner_not_found = 1 [ deprecated = true ];
heartbeat_validity_heartbeat_outside_range = 2;
heartbeat_validity_bad_cbsd_id = 3;
heartbeat_validity_not_operational = 4;
/// Gateway not found on the blockchain
heartbeat_validity_gateway_not_found = 5;
}

message speedtest_avg {
Expand Down