| 1 | <?php |
||
| 10 | class SigValues |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var ScriptInterface |
||
| 14 | */ |
||
| 15 | private $scriptSig; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var ScriptWitnessInterface |
||
| 19 | */ |
||
| 20 | private $scriptWitness; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * SigValues constructor. |
||
| 24 | * @param ScriptInterface $scriptSig |
||
| 25 | * @param ScriptWitnessInterface $scriptWitness |
||
| 26 | */ |
||
| 27 | public function __construct(ScriptInterface $scriptSig, ScriptWitnessInterface $scriptWitness) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return ScriptInterface |
||
| 35 | */ |
||
| 36 | public function getScriptSig(): ScriptInterface |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return ScriptWitnessInterface |
||
| 43 | */ |
||
| 44 | public function getScriptWitness(): ScriptWitnessInterface |
||
| 48 | } |
||
| 49 |