Use &[u8] for program address seeds rather then &str (#10744)

This commit is contained in:
Jack May
2020-06-22 16:51:43 -07:00
committed by GitHub
parent 842cab2739
commit 73586c1aad
9 changed files with 47 additions and 45 deletions

View File

@ -377,7 +377,7 @@ typedef struct {
* Seed used to create a program address
*/
typedef struct {
const char *addr; /** Seed string */
const uint8_t *addr; /** Seed string */
uint64_t len; /** Length of the seed string */
} SolSignerSeed;