diff options
author | Thomas Winget <tewinget@gmail.com> | 2014-10-06 19:54:46 -0400 |
---|---|---|
committer | warptangent <warptangent@inbox.com> | 2015-01-04 18:41:43 -0800 |
commit | 67515b8b19b7a9ea4f1666519a624f5efa44cdf3 (patch) | |
tree | 078f685394ca1e6d1e78b929cc5df9debe89bcec /src | |
parent | import of BlockchainDB files (diff) | |
download | monero-67515b8b19b7a9ea4f1666519a624f5efa44cdf3.tar.xz |
missing typedef
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptonote_core/blockchain_db.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cryptonote_core/blockchain_db.h b/src/cryptonote_core/blockchain_db.h index 5728f7065..5359909f7 100644 --- a/src/cryptonote_core/blockchain_db.h +++ b/src/cryptonote_core/blockchain_db.h @@ -127,6 +127,9 @@ namespace cryptonote { +// typedef for convenience +typedef std::pair<crypto::hash, uint64_t> tx_out_index; + /*********************************** * Exception Definitions ***********************************/ |