mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-23 21:34:45 +00:00
Restore invalid fee check (must be > 0)
This commit is contained in:
parent
0337a39d31
commit
2718db0705
@ -2858,6 +2858,9 @@ UniValue bumpfee(const JSONRPCRequest& request)
|
|||||||
}
|
}
|
||||||
} else if (options.exists("totalFee")) {
|
} else if (options.exists("totalFee")) {
|
||||||
totalFee = options["totalFee"].get_int64();
|
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")) {
|
if (options.exists("replaceable")) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user