1 | <?php |
||
10 | class Bip69 |
||
11 | { |
||
12 | /** |
||
13 | * @param array $vTxin |
||
14 | * @return array |
||
15 | */ |
||
16 | public function sortInputs(array $vTxin) |
||
21 | |||
22 | /** |
||
23 | * @param TransactionInputInterface $tx1 |
||
24 | * @param TransactionInputInterface $tx2 |
||
25 | * @return bool |
||
26 | */ |
||
27 | public function compareInputs(TransactionInputInterface $tx1, TransactionInputInterface $tx2) |
||
35 | |||
36 | /** |
||
37 | * @param TransactionOutputInterface[] $vTxout |
||
38 | * @return TransactionOutputInterface[] |
||
39 | */ |
||
40 | public function sortOutputs($vTxout) |
||
45 | |||
46 | /** |
||
47 | * @param TransactionOutputInterface $tx1 |
||
48 | * @param TransactionOutputInterface $tx2 |
||
49 | * @return bool |
||
50 | */ |
||
51 | public function compareOutputs(TransactionOutputInterface $tx1, TransactionOutputInterface $tx2) |
||
55 | |||
56 | /** |
||
57 | * @param TransactionInterface $tx |
||
58 | * @return bool |
||
59 | */ |
||
60 | public function check(TransactionInterface $tx) |
||
72 | } |