diff options
author | warptangent <warptangent@inbox.com> | 2015-01-09 12:57:33 -0800 |
---|---|---|
committer | warptangent <warptangent@inbox.com> | 2015-01-09 16:34:12 -0800 |
commit | d045dfa7ce0bf131681193c97560da26f9f37900 (patch) | |
tree | cc38bb7fc26fec948256f845c9f400978e56fc88 /.gitattributes | |
parent | throw inline functions need to keep exception type (diff) | |
download | monero-d045dfa7ce0bf131681193c97560da26f9f37900.tar.xz |
Fix transfers (without mixins)
Fix Blockchain::get_tx_outputs_gindexs() to return amount output
indices.
Implement BlockchainLMDB::get_tx_amount_output_indices() and call it
from the function instead of BlockchainLMDB::get_tx_output_indices()
Previously, Blockchain::get_tx_outputs_gindexs() was instead returning
global output indices, which are internal to LMDB databases.
Allows bitmonerod RPC /get_o_indexes.bin to return the amount output
indices as expected.
Allows simplewallet refresh to set correct amount output indices for
incoming transfers. simplewallet can now construct and send valid
transactions (currently only without mixins).
This is a fix that doesn't require altering the structure of the
current LMDB databases.
TODO:
This can be done more efficiently by adding another LMDB database
(key-value table).
It's not used during regular transaction validation by bitmonerod. I
think it's currently used only or mainly by simplewallet for just its
own incoming transactions. So the current behavior is not a primary
bottleneck.
Currently, it's using the "output_amounts" database, walking through a
given amount's list of values, comparing each one to a given global
output index. The iteration number of the match is the desired result:
the amount output index. This is done for each global output index of
the transaction.
A tx's amount output indices can be stored in various other ways
allowing for faster lookup. Since a tx is only written once, there are
no special future write requirements for its list of indices.
Diffstat (limited to '.gitattributes')
0 files changed, 0 insertions, 0 deletions