diff options
author | luigi1111 <luigi1111w@gmail.com> | 2020-04-21 08:26:54 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2020-04-21 08:26:54 -0500 |
commit | 2d729fbdf79e8f161159bd54ac88b2d7836738ac (patch) | |
tree | 852ba7aa8bf9479c6c0991baef0fa6bd1c0f30e2 /src/wallet/message_store.h | |
parent | Merge pull request #6278 (diff) | |
parent | Allow wallet2.h to run in WebAssembly (diff) | |
download | monero-2d729fbdf79e8f161159bd54ac88b2d7836738ac.tar.xz |
Merge pull request #6332
87d7558 Allow wallet2.h to run in WebAssembly (woodser)
Diffstat (limited to 'src/wallet/message_store.h')
-rw-r--r-- | src/wallet/message_store.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wallet/message_store.h b/src/wallet/message_store.h index 637bd29a1..d40daf186 100644 --- a/src/wallet/message_store.h +++ b/src/wallet/message_store.h @@ -43,6 +43,7 @@ #include "common/i18n.h" #include "common/command_line.h" #include "wipeable_string.h" +#include "net/abstract_http_client.h" #include "message_transporter.h" #undef MONERO_DEFAULT_LOG_CATEGORY @@ -202,7 +203,8 @@ namespace mms class message_store { public: - message_store(); + message_store(std::unique_ptr<epee::net_utils::http::abstract_http_client> http_client); + // Initialize and start to use the MMS, set the first signer, this wallet itself // Filename, if not null and not empty, is used to create the ".mms" file // reset it if already used, with deletion of all signers and messages |