From aa0b9bde8f0049e5be903c6d26f9c0d2c91afcdf Mon Sep 17 00:00:00 2001 From: hakkadaikon Date: Sat, 2 Dec 2023 02:52:14 +0900 Subject: [PATCH] nostrdb/Delete unuse argument (destsize) Closes: https://github.com/damus-io/nostrdb/pull/18 Reviewed-by: William Casarin Signed-off-by: William Casarin --- nostrdb/nostrdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nostrdb/nostrdb.c b/nostrdb/nostrdb.c index c104bcd3..1b8c6d89 100644 --- a/nostrdb/nostrdb.c +++ b/nostrdb/nostrdb.c @@ -3629,7 +3629,7 @@ static int ndb_event_commitment(struct ndb_note *ev, unsigned char *buf, int buf struct cursor cur; int ok; - if (!hex_encode(ev->pubkey, sizeof(ev->pubkey), pubkey, sizeof(pubkey))) + if (!hex_encode(ev->pubkey, sizeof(ev->pubkey), pubkey)) return 0; make_cursor(buf, buf + buflen, &cur);