Skip to content

Commit

Permalink
[trivial] Fix typo in CDiskBlockPos struct's ToString
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Layton committed Aug 14, 2018
1 parent 63f8b01 commit 8bd98a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chain.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ struct CDiskBlockPos

std::string ToString() const
{
return strprintf("CBlockDiskPos(nFile=%i, nPos=%i)", nFile, nPos);
return strprintf("CDiskBlockPos(nFile=%i, nPos=%i)", nFile, nPos);
}

};
Expand Down

0 comments on commit 8bd98a3

Please sign in to comment.