| 1 | <?php |
||
| 8 | abstract class AbstractBitcoinCash extends Network implements BitcoinCashNetworkInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | private $cashAddressPrefix; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * BitcoinCash constructor. |
||
| 17 | * @param NetworkInterface $base |
||
| 18 | * @param string $cashAddressPrefix |
||
| 19 | * @throws \Exception |
||
| 20 | */ |
||
| 21 | 14 | public function __construct(NetworkInterface $base, $cashAddressPrefix) { |
|
| 34 | |||
| 35 | /** |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | 10 | public function getCashAddressPrefix() { |
|
| 41 | } |
||
| 42 |