aboutsummaryrefslogtreecommitdiff
path: root/src/nostr_service.cpp
diff options
context:
space:
mode:
authorLibravatar Michael Jurkoic <mjjurkoic@gmail.com>2024-03-18 21:28:19 -0500
committerLibravatar Michael Jurkoic <mjjurkoic@gmail.com>2024-03-18 21:28:19 -0500
commit6dde23e6c66e846c64d49c5258f0dbf44e3d0374 (patch)
tree7602ceb68ddb012ff13217095a528b0e44e44d96 /src/nostr_service.cpp
parenta437d34b29d2a65113f3f67ffa1a6c3391b7e836 (diff)
Declare a signer interface
Diffstat (limited to 'src/nostr_service.cpp')
-rw-r--r--src/nostr_service.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nostr_service.cpp b/src/nostr_service.cpp
index 0409a0d..7efc11e 100644
--- a/src/nostr_service.cpp
+++ b/src/nostr_service.cpp
@@ -129,7 +129,7 @@ tuple<RelayList, RelayList> NostrService::publishEvent(Event event)
for (const string& relay : this->_activeRelays)
{
future<tuple<string, bool>> publishFuture = async([this, &relay, &event]() {
- return this->_client->send(event.serialize(), relay);
+ return this->_client->send(event.serialize(this->_signer), relay);
});
publishFutures.push_back(move(publishFuture));