Browse Source

Restore invalid fee check (must be > 0)

0.15
Jonas Schnelli 7 years ago
parent
commit
2718db0705
No known key found for this signature in database
GPG Key ID: 1EB776BB03C7922D
  1. 3
      src/wallet/rpcwallet.cpp

3
src/wallet/rpcwallet.cpp

@ -2858,6 +2858,9 @@ UniValue bumpfee(const JSONRPCRequest& request) @@ -2858,6 +2858,9 @@ UniValue bumpfee(const JSONRPCRequest& request)
}
} else if (options.exists("totalFee")) {
totalFee = options["totalFee"].get_int64();
if (totalFee <= 0) {
throw JSONRPCError(RPC_INVALID_PARAMETER, strprintf("Invalid totalFee %s (must be greater than 0)", FormatMoney(totalFee)));
}
}
if (options.exists("replaceable")) {

Loading…
Cancel
Save