From 02137e75f72d9884e3aa7758054865405f93229d Mon Sep 17 00:00:00 2001 From: Brian Balser Date: Wed, 3 Jul 2024 14:38:54 -0400 Subject: [PATCH] Fix name collision with enum --- src/service/poc_mobile.proto | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/service/poc_mobile.proto b/src/service/poc_mobile.proto index 52e955a3..116d4ff7 100644 --- a/src/service/poc_mobile.proto +++ b/src/service/poc_mobile.proto @@ -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;