add get_outputs function

This commit is contained in:
cryptochangements34 2018-06-08 14:39:50 -05:00 committed by GitHub
parent bdd2c1813d
commit d5dd832b91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

View File

@ -366,6 +366,22 @@ class NodeTools
return $array['data']['txs'];
}
public function get_outputs($address, $viewkey)
{
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => $this->url . '/api/outputsblocks?address=' . $address . '&viewkey=' . $viewkey . '&limit=5&mempool=0',
));
$resp = curl_exec($curl);
curl_close($curl);
$array = json_decode($resp, true);
return $array['data']['outputs'];
}
public function check_tx($tx_hash, $address, $viewKey)
{
$curl = curl_init();