We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c2ddaa0 + 23d5a8a commit d17e8a7Copy full SHA for d17e8a7
include/ethash/hash_types.h
@@ -16,13 +16,15 @@ union ethash_hash256
16
uint64_t word64s[4];
17
uint32_t word32s[8];
18
uint8_t bytes[32];
19
+ char str[32];
20
};
21
22
union ethash_hash512
23
{
24
uint64_t word64s[8];
25
uint32_t word32s[16];
26
uint8_t bytes[64];
27
+ char str[64];
28
29
30
union ethash_hash1024
@@ -31,6 +33,7 @@ union ethash_hash1024
31
33
uint64_t word64s[16];
32
34
uint32_t word32s[32];
35
uint8_t bytes[128];
36
+ char str[128];
37
38
39
union ethash_hash2048
@@ -39,6 +42,7 @@ union ethash_hash2048
42
uint64_t word64s[32];
40
43
uint32_t word32s[64];
41
44
uint8_t bytes[256];
45
+ char str[256];
46
47
48
#ifdef __cplusplus
0 commit comments