diff options
author | paveljanik <Pavel@Janik.cz> | 2015-07-03 16:36:49 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2015-12-02 15:18:22 +0100 |
commit | 8a03727d9cc975a3d0843d83ef05957b9e9fbbca (patch) | |
tree | d51cedc6720235014a184cba8e230fb11f18b8e9 /src/amount.h | |
parent | df2ced5c8325b84557f185b687e6c014de84cecf (diff) |
Fix various typos
Diffstat (limited to 'src/amount.h')
-rw-r--r-- | src/amount.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amount.h b/src/amount.h index a4c7764cda..a2e4a59d1f 100644 --- a/src/amount.h +++ b/src/amount.h @@ -30,7 +30,7 @@ extern const std::string CURRENCY_UNIT; static const CAmount MAX_MONEY = 21000000 * COIN; inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } -/** Type-safe wrapper class to for fee rates +/** Type-safe wrapper class for fee rates * (how much to pay based on transaction size) */ class CFeeRate |