diff options
| author | Thomas Winget <tewinget@gmail.com> | 2014-12-31 16:40:22 -0500 |
|---|---|---|
| committer | warptangent <warptangent@inbox.com> | 2015-01-04 19:39:44 -0800 |
| commit | 7374b81b23f906979972eddd6642ec67faccb711 (patch) | |
| tree | ba366f96cf2529300e998aa0da09464288f32347 /src | |
| parent | 4fa1a83f6e554670eb82a2611922eb995d8a7a65 (diff) | |
| parent | c5c100c69b83242dae2ebfd88eaff2ff743e9b30 (diff) | |
| download | monzero-core-7374b81b23f906979972eddd6642ec67faccb711.tar.gz monzero-core-7374b81b23f906979972eddd6642ec67faccb711.tar.xz monzero-core-7374b81b23f906979972eddd6642ec67faccb711.zip | |
Merge pull request #19 from warptangent/fix_tx_output
Obtain tx hash and tx output index from amount and output offset
Diffstat (limited to 'src')
| -rw-r--r-- | src/cryptonote_core/blockchain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/blockchain.cpp b/src/cryptonote_core/blockchain.cpp index c4767765d..87be9d566 100644 --- a/src/cryptonote_core/blockchain.cpp +++ b/src/cryptonote_core/blockchain.cpp @@ -170,7 +170,7 @@ bool Blockchain::scan_outputkeys_for_indexes(const txin_to_key& tx_in_to_key, vi try { // get tx hash and output index for output - auto output_index = m_db->get_output_tx_and_index_from_global(i); + auto output_index = m_db->get_output_tx_and_index(tx_in_to_key.amount, i); // get tx that output is from auto tx = m_db->get_tx(output_index.first); |
