关于提取硬币支付错误消息 "Transaction value exceeds per-TX limit!"
On withdraw coinpayments error message "Transaction value exceeds per-TX limit!"
我正在尝试使用硬币支付通过 LTCT 创建提款 api
使用此 PHP 代码
我试过使用 CreateWithdraw 方法和 ConvertCoins
$amount = (float)$total; // in usd
$currency1 = 'LTCT';
$add_tx_fee = 0; // 0 receiver pays for transaction charge
$currency2 = 'USD';
$address_to_send = trim($user->coinpayments_wallet_address);
$auto_confirm = 0;
$fields = array( "amount" => $amount,
"currency" => $currency1,
"currency2" => $currency2,
// "add_tx_fee" => $add_tx_fee,
"address" => $address_to_send,
"auto_confirm" => $auto_confirm, // set to 1 withdrawal will complete without email confirmation
);
$result = $cps->CreateWithdrawal($fields);
// this doesn't work also. It throws 'Conversion not possible error message'
//$result = $cps->ConvertCoins($amount, 'BTC', $currency2, $address_to_send);
但我收到以下错误消息:
array:2 [▼
"error" => "Transaction value exceeds per-TX limit!"
"result" => []
但我只想得到很少的钱,比如 5 美元。那怎么了?
上周我做了一些测试,在 ltct 和 dollar 之间的转换工作得很好。
好的,硬币支付支持帮助我解决了这个问题...
需要更新每日交易限额...
我对此缺乏经验...
现在可以使用了...
我正在尝试使用硬币支付通过 LTCT 创建提款 api 使用此 PHP 代码
我试过使用 CreateWithdraw 方法和 ConvertCoins
$amount = (float)$total; // in usd
$currency1 = 'LTCT';
$add_tx_fee = 0; // 0 receiver pays for transaction charge
$currency2 = 'USD';
$address_to_send = trim($user->coinpayments_wallet_address);
$auto_confirm = 0;
$fields = array( "amount" => $amount,
"currency" => $currency1,
"currency2" => $currency2,
// "add_tx_fee" => $add_tx_fee,
"address" => $address_to_send,
"auto_confirm" => $auto_confirm, // set to 1 withdrawal will complete without email confirmation
);
$result = $cps->CreateWithdrawal($fields);
// this doesn't work also. It throws 'Conversion not possible error message'
//$result = $cps->ConvertCoins($amount, 'BTC', $currency2, $address_to_send);
但我收到以下错误消息:
array:2 [▼
"error" => "Transaction value exceeds per-TX limit!"
"result" => []
但我只想得到很少的钱,比如 5 美元。那怎么了?
上周我做了一些测试,在 ltct 和 dollar 之间的转换工作得很好。
好的,硬币支付支持帮助我解决了这个问题...
需要更新每日交易限额... 我对此缺乏经验...
现在可以使用了...