diff options
| author | Jon Layton <[email protected]> | 2018-08-14 18:03:43 -0500 |
|---|---|---|
| committer | Jon Layton <[email protected]> | 2018-08-14 18:03:43 -0500 |
| commit | 8bd98a384603b78f50498a5fc67db1ef7052f399 (patch) | |
| tree | 5aff37b16a15787e328e09a27726a73d19d18347 /src/chain.h | |
| parent | Merge #13917: Additional safety checks in PSBT signer (diff) | |
| download | discoin-8bd98a384603b78f50498a5fc67db1ef7052f399.tar.xz discoin-8bd98a384603b78f50498a5fc67db1ef7052f399.zip | |
[trivial] Fix typo in CDiskBlockPos struct's ToString
Diffstat (limited to 'src/chain.h')
| -rw-r--r-- | src/chain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chain.h b/src/chain.h index 01011d54f..1c0c5a7e6 100644 --- a/src/chain.h +++ b/src/chain.h @@ -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); } }; |