diff options
| author | Alex Morcos <[email protected]> | 2017-01-19 22:07:56 -0500 |
|---|---|---|
| committer | Alex Morcos <[email protected]> | 2017-03-03 16:50:19 -0500 |
| commit | f8380054442d8aca4999277fe7617067edf231b9 (patch) | |
| tree | 4902b33ac7885e0445adace815b214d1f18e9ccc /src/wallet/wallet.cpp | |
| parent | [rpc] sendrawtransaction no longer bypasses minRelayTxFee (diff) | |
| download | discoin-f8380054442d8aca4999277fe7617067edf231b9.tar.xz discoin-f8380054442d8aca4999277fe7617067edf231b9.zip | |
No longer allow "free" transactions
Remove -limitfreerelay and always enforce minRelayTxFee in the mempool (except from disconnected blocks)
Remove -relaypriority, the option was only used for the ability to allow free transactions to be relayed regardless of their priority. Both notions no longer apply.
Diffstat (limited to 'src/wallet/wallet.cpp')
| -rw-r--r-- | src/wallet/wallet.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index cf3c6ee12..ba16cdf26 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -3842,9 +3842,6 @@ bool CWallet::ParameterInteraction() bSpendZeroConfChange = GetBoolArg("-spendzeroconfchange", DEFAULT_SPEND_ZEROCONF_CHANGE); fWalletRbf = GetBoolArg("-walletrbf", DEFAULT_WALLET_RBF); - if (GetBoolArg("-sendfreetransactions", false)) - InitWarning("The argument -sendfreetransactions is no longer supported."); - return true; } |