aboutsummaryrefslogtreecommitdiff
path: root/src/blockchain_db
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2018-06-25 14:53:27 -0500
committerluigi1111 <luigi1111w@gmail.com>2018-06-25 14:53:27 -0500
commitc3ec5373b3c61c4bf0df126473cbcec528c6d393 (patch)
tree0dc7b85cf4ebfb9e72de101beb02b9556c2477ef /src/blockchain_db
parentMerge pull request #3921 (diff)
parenttx_pool: initialize bitflags padding since it gets written to storage (diff)
downloadmonero-c3ec5373b3c61c4bf0df126473cbcec528c6d393.tar.xz
Merge pull request #3936
d81e042 tx_pool: initialize bitflags padding since it gets written to storage (moneromooo-monero)
Diffstat (limited to 'src/blockchain_db')
-rw-r--r--src/blockchain_db/blockchain_db.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/blockchain_db/blockchain_db.h b/src/blockchain_db/blockchain_db.h
index 19ba32340..564016fc9 100644
--- a/src/blockchain_db/blockchain_db.h
+++ b/src/blockchain_db/blockchain_db.h
@@ -148,6 +148,7 @@ struct txpool_tx_meta_t
uint8_t relayed;
uint8_t do_not_relay;
uint8_t double_spend_seen: 1;
+ uint8_t bf_padding: 7;
uint8_t padding[76]; // till 192 bytes
};