Skip to content

Commit 51c4ebb

Browse files
committed
Merge #706: sendtomainchain_pak: Fix minimum send amount message
3fa6c9c sendtomainchain_pak: Fix minimum send amount message (Gregory Sanders) Pull request description: Tree-SHA512: 202da1fc4e3df9df13a0188d64bea77e65439780486cb6baacb736518b16116a91961545f02f2234db929d43352d95de878886de44d68db0153b2fb6d7279c6a
2 parents d75d1f3 + 3fa6c9c commit 51c4ebb

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)