Skip to content

Commit 817ebcd

Browse files
instagibbsstevenroose
authored andcommitted
sendtomainchain_pak: Fix minimum send amount message
1 parent eed409a commit 817ebcd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/wallet/rpcwallet.cpp

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

52125212
bool subtract_fee = false;
52135213
if (request.params.size() > 2) {

0 commit comments

Comments
 (0)