diff options
| author | Daira Hopwood <[email protected]> | 2015-01-31 02:54:55 +0000 |
|---|---|---|
| committer | Daira Hopwood <[email protected]> | 2015-01-31 23:23:20 +0000 |
| commit | 1371e6f5db88941c3b3c70d7a13b0cbf150ebf66 (patch) | |
| tree | f5526ecad0a1277ea6ee0acf5147968bf19efe02 /src/wallet.h | |
| parent | Merge pull request #5707 (diff) | |
| download | discoin-1371e6f5db88941c3b3c70d7a13b0cbf150ebf66.tar.xz discoin-1371e6f5db88941c3b3c70d7a13b0cbf150ebf66.zip | |
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 <[email protected]>
Diffstat (limited to 'src/wallet.h')
| -rw-r--r-- | src/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.h b/src/wallet.h index f9cbd3a84..71d9d1fb6 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -548,7 +548,7 @@ public: int GetDepthInMainChain() const { const CBlockIndex *pindexRet; return GetDepthInMainChain(pindexRet); } bool IsInMainChain() const { const CBlockIndex *pindexRet; return GetDepthInMainChainINTERNAL(pindexRet) > 0; } int GetBlocksToMaturity() const; - bool AcceptToMemoryPool(bool fLimitFree=true, bool fRejectInsaneFee=true); + bool AcceptToMemoryPool(bool fLimitFree=true, bool fRejectAbsurdFee=true); }; /** |