Skip to content

Commit 0f85594

Browse files
authored
Remove mention of base58 in chain_rewardable_entities (#466)
* remove mention of base58 in chain_rewardable_entities * clang format and removed outdated comments
1 parent 2217e1a commit 0f85594

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

src/service/chain_rewardable_entities.proto

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
1-
// TODO: Design for different key formats - track "archetype" of key ... helium
2-
// vs. solana, network prefixes etc.
3-
// TODO: Consider OTHER Rewardable Entities (REs) in the future
4-
// TODO: Signature STUFF in req's and reports
5-
61
syntax = "proto3";
72

83
package helium.chain_rewardable_entities;
94

10-
message solana_pub_key {
11-
// As string - base58 encode
12-
bytes value = 1;
13-
}
5+
message solana_pub_key { bytes value = 1; }
146

157
message helium_pub_key {
16-
// As string - base58 check encode helium pubkey
8+
// bytes of a valid helium pub key.
9+
// Should support parsing into helium_crypto::public_key::PublicKey
1710
bytes value = 1;
1811
}
1912

0 commit comments

Comments
 (0)