diff options
author | Riccardo Spagni <ric@spagni.net> | 2015-10-30 09:58:40 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2015-10-30 09:58:41 +0200 |
commit | 6960b1e8a9b3424fce9ce1ee5d668a1270e196cd (patch) | |
tree | 1c257c5a7ba77d9466804d3a0db8d9a9618c39ae /src/blockchain_db/blockchain_db.h | |
parent | Merge pull request #457 (diff) | |
parent | Remove some old/obsolete/unused code (diff) | |
download | monero-6960b1e8a9b3424fce9ce1ee5d668a1270e196cd.tar.xz |
Merge pull request #460
4f873bc Remove some old/obsolete/unused code (moneromooo-monero)
Diffstat (limited to 'src/blockchain_db/blockchain_db.h')
-rw-r--r-- | src/blockchain_db/blockchain_db.h | 4 |
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; |