nostril

A C cli tool for creating nostr events
git clone git://jb55.com/nostril
Log | Files | Refs | README

commit 435380f327499a97078ab9eda9340fd02432e696
parent 68ff7a6282b42491150bd01adc8134cf7f931d8e
Author: William Casarin <jb55@jb55.com>
Date:   Thu, 14 Apr 2022 08:44:13 -0700

fix has_kind

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Mnostril.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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;