* Get multisig signatures if present. * @returns {Buffer[]|null}
()
| 2322 | */ |
| 2323 | |
| 2324 | getMultisigInput() { |
| 2325 | if (!this.isMultisigInput()) |
| 2326 | return null; |
| 2327 | |
| 2328 | const sigs = []; |
| 2329 | |
| 2330 | for (let i = 1; i < this.code.length; i++) |
| 2331 | sigs.push(this.getData(i)); |
| 2332 | |
| 2333 | return sigs; |
| 2334 | } |
| 2335 | |
| 2336 | /** |
| 2337 | * "Guess" whether the input script is pay-to-scripthash. |
nothing calls this directly
no test coverage detected