tx_pool: silence use of uninitialized warning

The result is not actually used when uninitialized
This commit is contained in:
moneromooo-monero 2017-03-21 12:21:19 +00:00
parent 70e71a1845
commit 2242d8ebd6
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -614,7 +614,7 @@ namespace cryptonote
CRITICAL_REGION_LOCAL(m_transactions_lock);
uint64_t best_coinbase = 0, coinbase;
uint64_t best_coinbase = 0, coinbase = 0;
total_size = 0;
fee = 0;