X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fmain.cpp;h=12703621e8d9844cff22404adffc3eaf6add004e;hb=8ed1f7c1532fe3e67ca5f7fc7c1c920bbf297203;hp=c2decc339d9ea1f1417c59c15d88855a8a51bb32;hpb=e364ad962f40afb091db5f03a0c48342063672a0;p=novacoin.git diff --git a/src/main.cpp b/src/main.cpp index c2decc3..1270362 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1311,6 +1311,9 @@ bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew) BOOST_FOREACH(CTransaction& tx, vDelete) tx.RemoveFromMemoryPool(); + printf("REORGANIZE: Disconnected %i blocks; %s..%s\n", vDisconnect.size(), pfork->GetBlockHash().ToString().substr(0,20).c_str(), pindexBest->GetBlockHash().ToString().substr(0,20).c_str()); + printf("REORGANIZE: Connected %i blocks; %s..%s\n", vConnect.size(), pfork->GetBlockHash().ToString().substr(0,20).c_str(), pindexNew->GetBlockHash().ToString().substr(0,20).c_str()); + return true; }