1 | <?php |
||
9 | class BitcoinConsensus implements ConsensusInterface |
||
10 | { |
||
11 | /** |
||
12 | * @param TransactionInterface $tx |
||
13 | * @param ScriptInterface $scriptPubKey |
||
14 | * @param int $nInputToSign |
||
15 | * @param int $flags |
||
16 | * @param int $amount |
||
17 | * @return bool |
||
18 | */ |
||
19 | public function verify(TransactionInterface $tx, ScriptInterface $scriptPubKey, $flags, $nInputToSign, $amount) |
||
30 | } |
||
31 |