Browse Source

Clarify comment that fees less than the default are also supported

pull/136/head
Jonathan "Duke" Leto 6 years ago
parent
commit
25de73e6c5
  1. 1
      src/wallet/rpcwallet.cpp

1
src/wallet/rpcwallet.cpp

@ -3646,6 +3646,7 @@ UniValue z_sendmany(const UniValue& params, bool fHelp)
}
// This allows amount=0 (and all amount < nDefaultFee) transactions to use the default network fee
// or anything less than nDefaultFee
// instead of being forced to use a custom fee and leak metadata
if (nTotalOut < nDefaultFee) {
if (nFee > nDefaultFee) {

Loading…
Cancel
Save