aboutsummaryrefslogtreecommitdiff
path: root/src/blockchain_db/blockchain_db.h
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2015-10-27 10:01:20 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2015-10-27 10:01:20 +0000
commit4f873bcbaa7cbf8733ed9ffc4f136256cb90d447 (patch)
treeec22aea9d7c100757d097a798774a9edb66cf82f /src/blockchain_db/blockchain_db.h
parentMerge pull request #453 (diff)
downloadmonero-4f873bcbaa7cbf8733ed9ffc4f136256cb90d447.tar.xz
Remove some old/obsolete/unused code
git history's here if needed to get any of this back
Diffstat (limited to 'src/blockchain_db/blockchain_db.h')
-rw-r--r--src/blockchain_db/blockchain_db.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/blockchain_db/blockchain_db.h b/src/blockchain_db/blockchain_db.h
index 1666e57c5..85144f04c 100644
--- a/src/blockchain_db/blockchain_db.h
+++ b/src/blockchain_db/blockchain_db.h
@@ -106,7 +106,6 @@
* Outputs:
* uint64_t get_num_outputs(amount)
* pub_key get_output_key(amount, index)
- * tx_out get_output(tx_hash, index)
* hash,index get_output_tx_and_index_from_global(index)
* hash,index get_output_tx_and_index(amount, index)
* vec<uint64> get_tx_output_indices(tx_hash)
@@ -469,9 +468,6 @@ public:
virtual output_data_t get_output_key(const uint64_t& amount, const uint64_t& index) = 0;
virtual output_data_t get_output_key(const uint64_t& global_index) const = 0;
- // returns the output indexed by <index> in the transaction with hash <h>
- virtual tx_out get_output(const crypto::hash& h, const uint64_t& index) const = 0;
-
// returns the tx hash associated with an output, referenced by global output index
virtual tx_out_index get_output_tx_and_index_from_global(const uint64_t& index) const = 0;