diff options
| author | Philip Kaufmann <[email protected]> | 2014-10-31 09:36:30 +0100 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2014-10-31 09:41:15 +0100 |
| commit | 771d500283129cf19d14045a58d0e2fb0ce2cba1 (patch) | |
| tree | 658355f063ffb80f7159b031ba5091bf70dfec2d /src/rpcblockchain.cpp | |
| parent | Merge pull request #5164 (diff) | |
| download | discoin-771d500283129cf19d14045a58d0e2fb0ce2cba1.tar.xz discoin-771d500283129cf19d14045a58d0e2fb0ce2cba1.zip | |
minor cleanup: include orders, end comments etc.
- no code changes
Diffstat (limited to 'src/rpcblockchain.cpp')
| -rw-r--r-- | src/rpcblockchain.cpp | 2 |
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); |