Skip to content

Commit

Permalink
sendtomainchain_pak: Fix minimum send amount message
Browse files Browse the repository at this point in the history
  • Loading branch information
instagibbs committed Sep 11, 2019
1 parent 5b2fe55 commit 3fa6c9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet/rpcwallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 3fa6c9c

Please sign in to comment.