Revert "Bounds error, should fix #27"

This reverts commit 6f1c4b4c2c.
This commit is contained in:
warptangent 2015-02-22 10:31:11 -08:00
parent 6f1c4b4c2c
commit 963bc09087
No known key found for this signature in database
GPG key ID: 0E490BEBFBE4E92D

View file

@ -1053,7 +1053,7 @@ uint64_t BlockchainLMDB::height() const
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
check_open();
return m_height - 1;
return m_height;
}