| 1 | <?php |
||
| 8 | class BitcoinCash extends Network implements BitcoinCashNetworkInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | private $cashAddressPrefix; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * BitcoinCash constructor. |
||
| 17 | * @param bool $testnet |
||
| 18 | * @throws \Exception |
||
| 19 | */ |
||
| 20 | 13 | public function __construct($testnet = false) { |
|
| 41 | |||
| 42 | /** |
||
| 43 | * @return string |
||
| 44 | */ |
||
| 45 | 9 | public function getCashAddressPrefix() { |
|
| 48 | } |
||
| 49 |