mirror of
https://github.com/monero-project/monero.git
synced 2026-01-20 19:42:58 +01:00
tx_pool: silence use of uninitialized warning
The result is not actually used when uninitialized
This commit is contained in:
@@ -614,7 +614,7 @@ namespace cryptonote
|
|||||||
|
|
||||||
CRITICAL_REGION_LOCAL(m_transactions_lock);
|
CRITICAL_REGION_LOCAL(m_transactions_lock);
|
||||||
|
|
||||||
uint64_t best_coinbase = 0, coinbase;
|
uint64_t best_coinbase = 0, coinbase = 0;
|
||||||
total_size = 0;
|
total_size = 0;
|
||||||
fee = 0;
|
fee = 0;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user