diff options
author | Daira Hopwood <daira@jacaranda.org> | 2015-01-31 02:54:55 +0000 |
---|---|---|
committer | Daira Hopwood <daira@jacaranda.org> | 2015-01-31 23:23:20 +0000 |
commit | 1371e6f5db88941c3b3c70d7a13b0cbf150ebf66 (patch) | |
tree | f5526ecad0a1277ea6ee0acf5147968bf19efe02 /src/wallet.cpp | |
parent | 6af674ecdc99db2eb741b8dc79e44bd0202e3855 (diff) |
Change "insane" to "absurd" (referring to high fees) in text strings and identifiers.
Note that this will also require translation changes in Transifex for the key
"A fee higher than %1 is considered an insanely high fee." which is now
"A fee higher than %1 is considered an absurdly high fee."
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
Diffstat (limited to 'src/wallet.cpp')
-rw-r--r-- | src/wallet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp index 1fe0552109..31ceda9c31 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -2365,9 +2365,9 @@ int CMerkleTx::GetBlocksToMaturity() const } -bool CMerkleTx::AcceptToMemoryPool(bool fLimitFree, bool fRejectInsaneFee) +bool CMerkleTx::AcceptToMemoryPool(bool fLimitFree, bool fRejectAbsurdFee) { CValidationState state; - return ::AcceptToMemoryPool(mempool, state, *this, fLimitFree, NULL, fRejectInsaneFee); + return ::AcceptToMemoryPool(mempool, state, *this, fLimitFree, NULL, fRejectAbsurdFee); } |