1 | <?php |
||
14 | class BitcoinCashChecker extends Checker |
||
15 | { |
||
16 | /** |
||
17 | * @var int |
||
18 | */ |
||
19 | protected $sigHashOptionalBits = SigHash::ANYONECANPAY | SigHash::BITCOINCASH; |
||
20 | |||
21 | /** |
||
22 | * @param ScriptInterface $script |
||
23 | * @param int $sigHashType |
||
24 | * @param int $sigVersion |
||
25 | * @return BufferInterface |
||
26 | */ |
||
27 | public function getSigHash(ScriptInterface $script, $sigHashType, $sigVersion) |
||
53 | } |
||
54 |