Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
32 | 4 | public function convertKey(KeyInterface $key) |
|
33 | { |
||
34 | 4 | $redeemScript = new P2shScript($this->scriptDataFactory->convertKey($key)->getScriptPubKey()); |
|
35 | 4 | return new ScriptAndSignData( |
|
36 | 4 | $redeemScript->getOutputScript(), |
|
37 | 4 | (new SignData()) |
|
38 | 4 | ->p2sh($redeemScript) |
|
39 | ); |
||
40 | } |
||
41 | } |
||
42 |