Skip to content

Commit

Permalink
deprecate old heartbeat invalid reason; add new correct one
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffgrunewald committed Apr 25, 2023
1 parent 40388d2 commit c1413c1
Showing 1 changed file with 3 additions and 1 deletion.
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

0 comments on commit c1413c1

Please sign in to comment.