sendtomainchain_pak: Fix minimum send amount message

This commit is contained in:
Gregory Sanders 2019-09-11 09:27:53 -04:00
parent 5b2fe5563b
commit 3fa6c9ca3a

View file

@ -5212,7 +5212,7 @@ UniValue sendtomainchain_pak(const JSONRPCRequest& request)
//amount
CAmount nAmount = AmountFromValue(request.params[1]);
if (nAmount < 100000)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid amount for send, must send more than 0.0001 BTC");
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid amount for send, must send more than 0.00100000 BTC");
bool subtract_fee = false;
if (request.params.size() > 2) {