Skip to content

Commit

Permalink
use strings for addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
andymck committed Nov 22, 2024
1 parent d42c1ab commit 81ccacc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/service/sub_dao.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ message sub_dao_epoch_reward_info {
// The epoch of the reward info
uint64 epoch = 1;
// The on-chain identity of the epoch
bytes epoch_address = 2;
string epoch_address = 2;
// The on-chain identity of the subdao
bytes sub_dao_address = 3;
string 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 @@ -20,7 +20,7 @@ message sub_dao_epoch_reward_info {

message sub_dao_epoch_reward_info_req_v1 {
// The on-chain identity of the subdao to lookup
bytes sub_dao_address = 1;
string 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 81ccacc

Please sign in to comment.