aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/message_store.h
diff options
context:
space:
mode:
authorrbrunner7 <rbrunner@dreamshare.ch>2020-05-04 11:31:46 +0200
committerrbrunner7 <rbrunner@dreamshare.ch>2020-05-20 12:05:21 +0200
commitc5c85925e2ebde0e0b3ac993ca6034536ea6ae79 (patch)
tree872dd764a249d949c028ab5e0388ada3c57d8499 /src/wallet/message_store.h
parentMerge pull request #6554 (diff)
downloadmonero-c5c85925e2ebde0e0b3ac993ca6034536ea6ae79.tar.xz
[release-v0.16] MMS: New 'config_checksum' subcommand
Diffstat (limited to '')
-rw-r--r--src/wallet/message_store.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/message_store.h b/src/wallet/message_store.h
index d40daf186..23dde5c3c 100644
--- a/src/wallet/message_store.h
+++ b/src/wallet/message_store.h
@@ -242,6 +242,7 @@ namespace mms
size_t add_auto_config_data_message(const multisig_wallet_state &state,
const std::string &auto_config_token);
void process_auto_config_data_message(uint32_t id);
+ std::string get_config_checksum() const;
void stop_auto_config();
// Process data just created by "me" i.e. the own local wallet, e.g. as the result of a "prepare_multisig" command
@@ -275,7 +276,7 @@ namespace mms
void set_message_processed_or_sent(uint32_t id);
void delete_message(uint32_t id);
void delete_all_messages();
- void get_sanitized_message_text(const message &m, std::string &sanitized_text) const;
+ void get_sanitized_text(const std::string &text, size_t max_length, std::string &sanitized_text) const;
void send_message(const multisig_wallet_state &state, uint32_t id);
bool check_for_messages(const multisig_wallet_state &state, std::vector<message> &messages);