Skip to content

Commit 3fa6c9c

Browse files
committed
sendtomainchain_pak: Fix minimum send amount message
1 parent 5b2fe55 commit 3fa6c9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wallet/rpcwallet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5212,7 +5212,7 @@ UniValue sendtomainchain_pak(const JSONRPCRequest& request)
52125212
//amount
52135213
CAmount nAmount = AmountFromValue(request.params[1]);
52145214
if (nAmount < 100000)
5215-
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid amount for send, must send more than 0.0001 BTC");
5215+
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid amount for send, must send more than 0.00100000 BTC");
52165216

52175217
bool subtract_fee = false;
52185218
if (request.params.size() > 2) {

0 commit comments

Comments
 (0)