mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-29 14:50:44 +00:00
16 lines
287 B
PHP
16 lines
287 B
PHP
<?php
|
|
|
|
function doCryptopiaTrading($quick=false)
|
|
{
|
|
$flushall = rand(0, 4) == 0;
|
|
if($quick) $flushall = false;
|
|
|
|
$balance = getdbosql('db_balances', "name='cryptopia'");
|
|
if(!$balance) return;
|
|
|
|
// not available yet...
|
|
|
|
if (!YAAMP_ALLOW_EXCHANGE) return;
|
|
|
|
// auto trade ... todo...
|
|
}
|