| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 6 | ||
| Bugs | 4 | Features | 0 |
| 1 | <?php |
||
| 5 | trait Transaction |
||
| 6 | { |
||
| 7 | public function transaction($txid) |
||
| 8 | { |
||
| 9 | $url = $this->buildUrl('/tx/'.$txid); |
||
|
|
|||
| 10 | $response = $this->client->doGet($url); |
||
| 11 | |||
| 12 | return $response; |
||
| 13 | } |
||
| 14 | |||
| 15 | public function transactionConfirmations($txid) |
||
| 21 | } |
||
| 22 | |||
| 23 | public function transactionValidate($txid) |
||
| 29 | } |
||
| 30 | } |
||
| 31 |