aboutsummaryrefslogtreecommitdiff
path: root/src/gen/seed.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gen/seed.c')
-rw-r--r--src/gen/seed.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gen/seed.c b/src/gen/seed.c
index 628dad5..cc26cb4 100644
--- a/src/gen/seed.c
+++ b/src/gen/seed.c
@@ -129,7 +129,8 @@ static void seed_W(seed_t *seed, const config_t *cfg) {
GEN hash = binascii_btoi(seed->hash20, 20, ENDIAN_BIG);
GEN mask = subis(int2n(itos(h)), 1);
// TODO: what if I get zeros at the beginning? 0123 == 123 for PARI t_INT
- // I should just convert to a t_VECSMALL of bits from the seed->hash and do everything with that.
+ // I should just convert to a t_VECSMALL of bits from the seed->hash and do
+ // everything with that.
// That's alot of custom code to handle bit strings.
GEN c0 = ibitand(hash, mask);
}