aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
diff options
context:
space:
mode:
authorMax K <[email protected]>2019-11-03 19:42:47 +0100
committerGitHub <[email protected]>2019-11-03 19:42:47 +0100
commitd5d4388a16785ecadfdbb37005b694e6dbdfba75 (patch)
tree5858563be4766088ece14d9d1f2e1b509c1e2dea /src/wallet
parentMerge pull request #1601 from langerhans/1.14-supermajority-rpc (diff)
parentFix dust threshold at 1 DOGE (diff)
downloaddiscoin-d5d4388a16785ecadfdbb37005b694e6dbdfba75.tar.xz
discoin-d5d4388a16785ecadfdbb37005b694e6dbdfba75.zip
Merge pull request #1615 from rnicoll/1.14/dust-fees
Correct dust and change
Diffstat (limited to 'src/wallet')
-rw-r--r--src/wallet/wallet.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h
index 5f77a31ea..09a18f520 100644
--- a/src/wallet/wallet.h
+++ b/src/wallet/wallet.h
@@ -53,9 +53,9 @@ static const CAmount DEFAULT_TRANSACTION_MINFEE = COIN;
//! minimum recommended increment for BIP 125 replacement txs
static const CAmount WALLET_INCREMENTAL_RELAY_FEE = COIN * 5;
//! target minimum change amount
-static const CAmount MIN_CHANGE = CENT;
+static const CAmount MIN_CHANGE = COIN;
//! final minimum change amount after paying for fees
-static const CAmount MIN_FINAL_CHANGE = MIN_CHANGE/2;
+static const CAmount MIN_FINAL_CHANGE = COIN;
//! Default for -spendzeroconfchange
static const bool DEFAULT_SPEND_ZEROCONF_CHANGE = true;
//! Default for -sendfreetransactions