aboutsummaryrefslogtreecommitdiff
path: root/src/signer
diff options
context:
space:
mode:
Diffstat (limited to 'src/signer')
-rw-r--r--src/signer/noscrypt_signer.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/signer/noscrypt_signer.cpp b/src/signer/noscrypt_signer.cpp
index 39bb667..05872c2 100644
--- a/src/signer/noscrypt_signer.cpp
+++ b/src/signer/noscrypt_signer.cpp
@@ -1,8 +1,15 @@
-#include "noscrypt_signer.hpp"
+#include <algorithm>
+#include <random>
+#include <sstream>
+#include <tuple>
+
+#include "signer/noscrypt_signer.hpp"
using namespace std;
-nostr::signer::NoscryptSigner::NoscryptSigner(shared_ptr<plog::IAppender> appender)
+nostr::signer::NoscryptSigner::NoscryptSigner(
+ shared_ptr<plog::IAppender> appender,
+ shared_ptr<nostr::service::INostrServiceBase> nostrService)
{
plog::init(plog::debug, appender.get());