Skip to content

Commit

Permalink
Fix name collision with enum
Browse files Browse the repository at this point in the history
  • Loading branch information
bbalser committed Jul 3, 2024
1 parent 0bc1329 commit 02137e7
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/service/poc_mobile.proto
Original file line number Diff line number Diff line change
Expand Up @@ -438,13 +438,14 @@ message radio_reward {
repeated boosted_hex boosted_hexes = 10;
}

enum boosted_hex_status {
boosted_hex_status_eligible = 0;
boosted_hex_status_location_score_below_threshold = 1;
boosted_hex_status_radio_threshold_not_met = 2;
boosted_hex_status_service_provider_ban = 3;
}

message radio_reward_v2 {
enum boosted_hex_status {
boosted_hex_status_eligible = 0;
boosted_hex_status_location_score_below_threshold = 1;
boosted_hex_status_radio_threshold_not_met = 2;
boosted_hex_status_service_provider_ban = 3;
}

message location_trust_score {
uint64 meters_to_asserted = 1;
Expand Down

0 comments on commit 02137e7

Please sign in to comment.