diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-11-12 11:19:44 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-11-16 09:56:45 +0100 |
commit | fa44237d76b66b6664870c3927b65a0ef89022e4 (patch) | |
tree | 2f60626fda466410facd55c259ff70ddeaf366db /src/consensus/amount.h | |
parent | ad09c287cb7033a28f8d0a002c1ca4f194c12f11 (diff) |
doc: Fix typos in endif header comments
Diffstat (limited to 'src/consensus/amount.h')
-rw-r--r-- | src/consensus/amount.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/consensus/amount.h b/src/consensus/amount.h index 96566ea13f..59b8e3417a 100644 --- a/src/consensus/amount.h +++ b/src/consensus/amount.h @@ -26,4 +26,4 @@ static constexpr CAmount COIN = 100000000; static constexpr CAmount MAX_MONEY = 21000000 * COIN; inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } -#endif // BITCOIN_CONSENSUS_AMOUNT_H +#endif // BITCOIN_CONSENSUS_AMOUNT_H |