Skip to content

Commit

Permalink
rename fields
Browse files Browse the repository at this point in the history
  • Loading branch information
andymck committed Nov 22, 2024
1 parent 5d49bc4 commit d42c1ab
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/service/sub_dao.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ package helium.sub_dao;
message sub_dao_epoch_reward_info {
// The epoch of the reward info
uint64 epoch = 1;
// The public key binary address and on-chain identity of the epoch
bytes epoch_pubkey = 2;
// The public key binary address and on-chain identity of the subdao
bytes sub_dao_pubkey = 3;
// The on-chain identity of the epoch
bytes epoch_address = 2;
// The on-chain identity of the subdao
bytes sub_dao_address = 3;
// The total HNT rewards emitted for the sub dao and epoch minus the
// delegation rewards
uint64 rewards_issued = 4;
Expand All @@ -19,8 +19,8 @@ message sub_dao_epoch_reward_info {
}

message sub_dao_epoch_reward_info_req_v1 {
// The public key binary address and on-chain identity of the subdao to lookup
bytes sub_dao_pubkey = 1;
// The on-chain identity of the subdao to lookup
bytes sub_dao_address = 1;
// The epoch for the specified subdao to look up
uint64 epoch = 2;
// pubkey binary of the signing keypair
Expand Down

0 comments on commit d42c1ab

Please sign in to comment.