diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-05-27 19:03:46 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-05-27 19:16:37 +0100 |
commit | 8069b3ba7f56965fbede8693fd1b4be810418013 (patch) | |
tree | 9bde693df2c300b75767ac2adc84a15f9b68c949 /src/blockchain_db/lmdb/db_lmdb.h | |
parent | wallet: add consts where appropriate (diff) | |
download | monero-8069b3ba7f56965fbede8693fd1b4be810418013.tar.xz |
blockchain_db: add a few const
Diffstat (limited to 'src/blockchain_db/lmdb/db_lmdb.h')
-rw-r--r-- | src/blockchain_db/lmdb/db_lmdb.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/blockchain_db/lmdb/db_lmdb.h b/src/blockchain_db/lmdb/db_lmdb.h index ec552a0f6..6a2646816 100644 --- a/src/blockchain_db/lmdb/db_lmdb.h +++ b/src/blockchain_db/lmdb/db_lmdb.h @@ -59,7 +59,7 @@ struct mdb_txn_safe return &m_txn; } - uint64_t num_active_tx(); + uint64_t num_active_tx() const; static void prevent_new_txns(); static void wait_no_active_txns(); @@ -201,7 +201,7 @@ public: private: void do_resize(); - bool need_resize(); + bool need_resize() const; virtual void add_block( const block& blk , const size_t& block_size @@ -236,7 +236,7 @@ private: * * @return the resultant blob */ - blobdata output_to_blob(const tx_out& output); + blobdata output_to_blob(const tx_out& output) const; /** * @brief convert a tx output blob to a tx output |