diff options
author | warptangent <warptangent@tutanota.com> | 2016-03-04 11:56:36 -0800 |
---|---|---|
committer | Howard Chu <hyc@symas.com> | 2016-04-05 20:54:06 +0100 |
commit | 9aadedb1d0eb4f922b33edfa0ede1f4d1ac128d1 (patch) | |
tree | 49f4a44ed76b3f176b73fbc353edb4d618e7bc79 /src/blockchain_db/blockchain_db.h | |
parent | Schema update: tx_indices - yet less indirection (diff) | |
download | monero-9aadedb1d0eb4f922b33edfa0ede1f4d1ac128d1.tar.xz |
Schema update: tx_indices - consolidate the tx subdbs from 5 to 3
Diffstat (limited to 'src/blockchain_db/blockchain_db.h')
-rw-r--r-- | src/blockchain_db/blockchain_db.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/blockchain_db/blockchain_db.h b/src/blockchain_db/blockchain_db.h index b71bb4416..665cccd40 100644 --- a/src/blockchain_db/blockchain_db.h +++ b/src/blockchain_db/blockchain_db.h @@ -148,6 +148,15 @@ struct output_data_t }; #pragma pack(pop) +#pragma pack(push, 1) +struct tx_data_t +{ + uint64_t tx_index; + uint64_t unlock_time; + uint64_t height; +}; +#pragma pack(pop) + /*********************************** * Exception Definitions ***********************************/ |