Merge pull request #4013

e5592c4 rpc: add blockchain disk size to getinfo (moneromooo-monero)
This commit is contained in:
luigi1111 2018-07-19 13:40:42 -05:00
commit 3e026ff6ed
No known key found for this signature in database
GPG key ID: F4ACA0183641E010
6 changed files with 25 additions and 0 deletions

View file

@ -126,6 +126,7 @@ public:
virtual void remove_txpool_tx(const crypto::hash& txid) {}
virtual bool get_txpool_tx_meta(const crypto::hash& txid, txpool_tx_meta_t &meta) const { return false; }
virtual bool get_txpool_tx_blob(const crypto::hash& txid, cryptonote::blobdata &bd) const { return false; }
virtual uint64_t get_database_size() const { return 0; }
virtual cryptonote::blobdata get_txpool_tx_blob(const crypto::hash& txid) const { return ""; }
virtual bool for_all_txpool_txes(std::function<bool(const crypto::hash&, const txpool_tx_meta_t&, const cryptonote::blobdata*)>, bool include_blob = false, bool include_unrelayed_txes = false) const { return false; }