Reconsider
This commit is contained in:
11
src/main.cpp
11
src/main.cpp
@@ -5335,14 +5335,15 @@ bool AcceptBlock(int32_t *futureblockp,CBlock& block, CValidationState& state, C
|
|||||||
*futureblockp = 1;
|
*futureblockp = 1;
|
||||||
if ( ASSETCHAINS_CBOPRET != 0 )
|
if ( ASSETCHAINS_CBOPRET != 0 )
|
||||||
{
|
{
|
||||||
CValidationState tmpstate; CBlockIndex *tmpindex;
|
CValidationState tmpstate; CBlockIndex *tmpindex; int32_t ht;
|
||||||
if ( (tmpindex=komodo_chainactive(tmpptr->GetHeight()-1)) != 0 )
|
ht = (int32_t)pindex->GetHeight();
|
||||||
|
if ( (tmpindex=komodo_chainactive(ht-1)) != 0 )
|
||||||
{
|
{
|
||||||
fprintf(stderr,"reconsider height.%d\n",(int32_t)tmpptr->GetHeight()-1);
|
fprintf(stderr,"reconsider height.%d\n",(int32_t)ht-1);
|
||||||
ReconsiderBlock(tmpstate,tmpindex);
|
ReconsiderBlock(tmpstate,tmpindex);
|
||||||
if ( (tmpindex=komodo_chainactive(tmpptr->GetHeight())) != 0 )
|
if ( (tmpindex=komodo_chainactive(ht)) != 0 )
|
||||||
{
|
{
|
||||||
fprintf(stderr,"reconsider height.%d\n",(int32_t)tmpptr->GetHeight());
|
fprintf(stderr,"reconsider height.%d\n",(int32_t)ht);
|
||||||
ReconsiderBlock(tmpstate,tmpindex);
|
ReconsiderBlock(tmpstate,tmpindex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user