From a4e6710d16fd1afb03255a50c4bacc7a0a5e84be Mon Sep 17 00:00:00 2001 From: Andrew McKenzie Date: Fri, 26 Jan 2024 16:25:10 +0000 Subject: [PATCH] add boost config pubkey --- src/hex_boosting.proto | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/hex_boosting.proto b/src/hex_boosting.proto index ef7ee73d..1fff2732 100644 --- a/src/hex_boosting.proto +++ b/src/hex_boosting.proto @@ -2,8 +2,6 @@ syntax = "proto3"; package helium; -import "service_provider.proto"; - message boosted_hex_info_v1 { // The res12 h3 index of the boosted hex uint64 location = 1; @@ -19,6 +17,8 @@ message boosted_hex_info_v1 { // the multipliers valid for this hex // for each period repeated uint32 multipliers = 5; + // the onchain pubkey of the boost config + bytes boost_config_pubkey = 6; } message boosted_hex_update_v1 { @@ -26,6 +26,4 @@ message boosted_hex_update_v1 { uint64 timestamp = 1; // Details of the updated hex boosted_hex_info_v1 update = 2; - // onchain txn id of the update - string txn_id = 3; }