From 817ebcd07329881ffcd13c09048d451eb3487a90 Mon Sep 17 00:00:00 2001 From: Gregory Sanders Date: Wed, 11 Sep 2019 09:27:53 -0400 Subject: [PATCH] sendtomainchain_pak: Fix minimum send amount message --- src/wallet/rpcwallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 77cbe79cfa..5e8ed4e975 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -5207,7 +5207,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) {