diff options
author | Riccardo Spagni <ric@spagni.net> | 2019-04-11 13:00:31 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2019-04-11 13:00:31 +0200 |
commit | 8e0c5b34dd7322ce4c74d95a12bd11b9b40381e3 (patch) | |
tree | 7c73227be570f59685f1c3efb4d313c0831aa9f6 /src/wallet/wallet2.h | |
parent | Merge pull request #5367 (diff) | |
parent | simplewallet: new net_stats command (diff) | |
download | monero-8e0c5b34dd7322ce4c74d95a12bd11b9b40381e3.tar.xz |
Merge pull request #5371
9f8dc4ce simplewallet: new net_stats command (moneromooo-monero)
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r-- | src/wallet/wallet2.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 38cd68784..8e652d0ec 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -1258,6 +1258,9 @@ namespace tools bool frozen(const crypto::key_image &ki) const; bool frozen(const transfer_details &td) const; + uint64_t get_bytes_sent() const; + uint64_t get_bytes_received() const; + // MMS ------------------------------------------------------------------------------------------------- mms::message_store& get_message_store() { return m_message_store; }; const mms::message_store& get_message_store() const { return m_message_store; }; |