blockchain: do not try to pop the genesis block
This commit is contained in:
parent
1d1a02e9f9
commit
77e9815db7
|
@ -645,6 +645,8 @@ block Blockchain::pop_block_from_blockchain()
|
||||||
block popped_block;
|
block popped_block;
|
||||||
std::vector<transaction> popped_txs;
|
std::vector<transaction> popped_txs;
|
||||||
|
|
||||||
|
CHECK_AND_ASSERT_THROW_MES(m_db->height() > 1, "Cannot pop the genesis block");
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
m_db->pop_block(popped_block, popped_txs);
|
m_db->pop_block(popped_block, popped_txs);
|
||||||
|
|
Loading…
Reference in New Issue