diff --git a/crypto/encoding/base58.c b/crypto/encoding/base58.c index 1e1cc04..17935d7 100644 --- a/crypto/encoding/base58.c +++ b/crypto/encoding/base58.c @@ -27,7 +27,7 @@ static const int8_t b58digits_map[] = { * convert a base58 encoded string into a binary array * @param b58 the base58 encoded string * @param base58_size the size of the encoded string - * @param bin the results buffer + * @param bin the results buffer (Q: Why ptr to ptr when nothing allocated?) * @param binszp the size of the results buffer * @returns true(1) on success */ diff --git a/routing/kademlia.c b/routing/kademlia.c index ff83533..0dde5ad 100644 --- a/routing/kademlia.c +++ b/routing/kademlia.c @@ -29,8 +29,7 @@ struct bs_struct { char *ip; uint16_t port; } bootstrap_list[] = { - { "127.0.0.1", 1234 }, - { "127.0.0.1", 4321 } + { "192.210.179.217", 5001 } }; pthread_t pth_kademlia, pth_announce;