Fix compile issue

This commit is contained in:
Duke
2023-04-23 09:13:21 -04:00
parent b197c18ffc
commit 9602e715ed

View File

@@ -515,7 +515,7 @@ public:
if(phashBlock == NULL) {
auto header = this->GetBlockHeader();
auto blockhash = header.GetHash();
fprintf(stderr, "GetBlockHash: phashBlock NULL at height %d, returning blockhash=%s instead\n", this->GetHeight(), blockhash.ToString() );
fprintf(stderr, "GetBlockHash: phashBlock NULL at height %d, returning blockhash=%s instead\n", this->GetHeight(), blockhash.ToString().c_str() );
// assert(phashBlock);
return blockhash;
}