mirror of
https://github.com/monero-project/monero.git
synced 2024-11-18 10:01:02 +00:00
Fix Blockchain::get_tail_id() to set parameter to last block number instead of height
This reflects the behavior of blockchain_storage::get_tail_id(). Fixes #27 so that RPC method getlastblockheader works.
This commit is contained in:
parent
963bc09087
commit
b88ab643ca
1 changed files with 1 additions and 1 deletions
|
@ -463,7 +463,7 @@ crypto::hash Blockchain::get_tail_id(uint64_t& height) const
|
|||
{
|
||||
LOG_PRINT_L3("Blockchain::" << __func__);
|
||||
CRITICAL_REGION_LOCAL(m_blockchain_lock);
|
||||
height = m_db->height();
|
||||
height = m_db->height() - 1;
|
||||
return get_tail_id();
|
||||
}
|
||||
//------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue