diff options
author | Howard Chu <hyc@symas.com> | 2016-04-04 17:28:31 +0100 |
---|---|---|
committer | Howard Chu <hyc@symas.com> | 2016-04-05 21:05:24 +0100 |
commit | 372acee72303b4d7ea225981c523d328fda297be (patch) | |
tree | c1da5004db9d5e62af8f2c5641c4c5fd8c77ca51 /src/blockchain_db/lmdb/db_lmdb.h | |
parent | Cleanup and clarify (diff) | |
download | monero-372acee72303b4d7ea225981c523d328fda297be.tar.xz |
Cleanup
drop obsolete remove_output()
fix get_output_key(global), fix crash in blockchain_dump
Diffstat (limited to '')
-rw-r--r-- | src/blockchain_db/lmdb/db_lmdb.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/blockchain_db/lmdb/db_lmdb.h b/src/blockchain_db/lmdb/db_lmdb.h index 534f5575f..1f8c3bbef 100644 --- a/src/blockchain_db/lmdb/db_lmdb.h +++ b/src/blockchain_db/lmdb/db_lmdb.h @@ -288,11 +288,9 @@ private: const std::vector<uint64_t>& amount_output_indices ); - virtual void remove_output(const tx_out& tx_output); - void remove_tx_outputs(const uint64_t tx_id, const transaction& tx); - void remove_output(const uint64_t& out_index, const uint64_t amount); + void remove_output(const uint64_t amount, const uint64_t& out_index); virtual void add_spent_key(const crypto::key_image& k_image); |