Add newlines to turntile log messages for miner

This commit is contained in:
Sean Bowe 2019-03-14 15:25:31 -06:00
parent 831725a671
commit ebe2edce9a
1 changed files with 2 additions and 2 deletions

View File

@ -342,11 +342,11 @@ CBlockTemplate* CreateNewBlock(const CScript& scriptPubKeyIn)
}
if (sproutValueDummy < 0) {
LogPrintf("CreateNewBlock(): tx %s appears to violate Sprout turnstile", tx.GetHash().ToString());
LogPrintf("CreateNewBlock(): tx %s appears to violate Sprout turnstile\n", tx.GetHash().ToString());
continue;
}
if (saplingValueDummy < 0) {
LogPrintf("CreateNewBlock(): tx %s appears to violate Sapling turnstile", tx.GetHash().ToString());
LogPrintf("CreateNewBlock(): tx %s appears to violate Sapling turnstile\n", tx.GetHash().ToString());
continue;
}