1
0
Fork 0
forked from lthn/blockchain

minor fix (uninitialized member variable)

This commit is contained in:
sowle 2019-11-22 16:18:03 +03:00
parent 03e4dfbbd2
commit 6d1f954f5d
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC

View file

@ -56,7 +56,8 @@ namespace currency
m_current_hash_rate(0),
m_last_hr_merge_time(0),
m_hashes(0),
m_config(AUTO_VAL_INIT(m_config))
m_config(AUTO_VAL_INIT(m_config)),
m_mine_address{}
{
}
//-----------------------------------------------------------------------------------------------------