aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Finrod Felagund <finrod.felagund.97@gmail.com>2024-04-15 22:26:02 +0200
committerLibravatar Finrod Felagund <finrod.felagund.97@gmail.com>2024-04-16 16:57:00 +0200
commit357b6813b908c3f9b272243c9e99a5bc1b442c89 (patch)
tree412314590174beaef754054fee0af866f324b9ba
parentc625dfa1a04cb0f0bed5e51bac64b595c8b483c3 (diff)
fix include sha.h
-rw-r--r--src/event.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/event.cpp b/src/event.cpp
index 347065c..2df1c3a 100644
--- a/src/event.cpp
+++ b/src/event.cpp
@@ -4,7 +4,7 @@
#include <sstream>
#include <string>
#include <nlohmann/json.hpp>
-#include <sha.h>
+#include <openssl/sha.h>
#include "nostr.hpp"
@@ -20,7 +20,7 @@ using std::string;
using std::stringstream;
using std::time;
-namespace nostr
+namespace nostr
{
string Event::serialize()
{