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