wallet_api: get bytes sent/received

This commit is contained in:
tobtoht 2021-06-04 15:44:19 +02:00
parent 14a1b89122
commit 8a67724218
No known key found for this signature in database
GPG key ID: 1CADD27F41F45C3C
3 changed files with 19 additions and 0 deletions

View file

@ -2603,4 +2603,15 @@ bool WalletImpl::reconnectDevice()
return r;
}
uint64_t WalletImpl::getBytesReceived()
{
return m_wallet->get_bytes_received();
}
uint64_t WalletImpl::getBytesSent()
{
return m_wallet->get_bytes_sent();
}
} // namespace

View file

@ -221,6 +221,8 @@ public:
virtual uint64_t coldKeyImageSync(uint64_t &spent, uint64_t &unspent) override;
virtual void deviceShowAddress(uint32_t accountIndex, uint32_t addressIndex, const std::string &paymentId) override;
virtual bool reconnectDevice() override;
virtual uint64_t getBytesReceived() override;
virtual uint64_t getBytesSent() override;
private:
void clearStatus() const;

View file

@ -1087,6 +1087,12 @@ struct Wallet
//! attempt to reconnect to hardware device
virtual bool reconnectDevice() = 0;
//! get bytes received
virtual uint64_t getBytesReceived() = 0;
//! get bytes sent
virtual uint64_t getBytesSent() = 0;
};
/**