aboutsummaryrefslogtreecommitdiff
path: root/src/rpcblockchain.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2014-11-03 14:55:28 +0100
committerWladimir J. van der Laan <[email protected]>2014-11-03 15:03:28 +0100
commit4e852e57b1732026722056a6bf22dfcf3f5dd53d (patch)
tree5c879c7c8a034c44314d16838a5092ae85e0b018 /src/rpcblockchain.cpp
parentMerge pull request #5106 (diff)
parentminor cleanup: include orders, end comments etc. (diff)
downloaddiscoin-4e852e57b1732026722056a6bf22dfcf3f5dd53d.tar.xz
discoin-4e852e57b1732026722056a6bf22dfcf3f5dd53d.zip
Merge pull request #5186
771d500 minor cleanup: include orders, end comments etc. (Philip Kaufmann)
Diffstat (limited to 'src/rpcblockchain.cpp')
-rw-r--r--src/rpcblockchain.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcblockchain.cpp b/src/rpcblockchain.cpp
index 78f556989..a7cd63bd9 100644
--- a/src/rpcblockchain.cpp
+++ b/src/rpcblockchain.cpp
@@ -474,7 +474,7 @@ struct CompareBlocksByHeight
bool operator()(const CBlockIndex* a, const CBlockIndex* b) const
{
/* Make sure that unequal blocks with the same height do not compare
- equal. Use the pointers themselves to make a distinction. */
+ equal. Use the pointers themselves to make a distinction. */
if (a->nHeight != b->nHeight)
return (a->nHeight > b->nHeight);