From 435380f327499a97078ab9eda9340fd02432e696 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Thu, 14 Apr 2022 08:44:13 -0700 Subject: [PATCH] fix has_kind Signed-off-by: William Casarin --- nostril.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nostril.c b/nostril.c index 8d334ec..5296ddc 100644 --- a/nostril.c +++ b/nostril.c @@ -19,7 +19,7 @@ #define HAS_CREATED_AT (1<<1) #define HAS_KIND (1<<2) -#define HAS_ENVELOPE (1<<2) +#define HAS_ENVELOPE (1<<3) struct key { secp256k1_keypair pair;