diff options
| author | MarcoFalke <[email protected]> | 2018-08-15 07:59:13 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-08-15 08:01:49 -0400 |
| commit | 80127f074e3f04ac8a877cb5fe0489f45ae9564d (patch) | |
| tree | 7bcde42e2e7fd13b6a2727452bab975604629de4 | |
| parent | Merge #13964: ci: Add Appveyor CI (diff) | |
| parent | [trivial] Fix typo in CDiskBlockPos struct's ToString (diff) | |
| download | discoin-80127f074e3f04ac8a877cb5fe0489f45ae9564d.tar.xz discoin-80127f074e3f04ac8a877cb5fe0489f45ae9564d.zip | |
Merge #13974: [trivial] Fix typo in CDiskBlockPos struct's ToString
8bd98a3846 [trivial] Fix typo in CDiskBlockPos struct's ToString (Jon Layton)
Pull request description:
(Logging)
Tree-SHA512: 5c0334fda15b1d668b251107772ae527e6b5f63d10e6c75330107eec0db7195845fdb9e92781591bcad6720bc8ef5af5a77cccf883170c4dfd2090b8c7ce16bd
| -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); } }; |