Merge pull request #3936

d81e042 tx_pool: initialize bitflags padding since it gets written to storage (moneromooo-monero)
This commit is contained in:
luigi1111 2018-06-25 14:53:27 -05:00
commit c3ec5373b3
No known key found for this signature in database
GPG key ID: F4ACA0183641E010
2 changed files with 3 additions and 0 deletions

View file

@ -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
};