isScriptHashScript returns whether or not the passed script is a standard pay-to-script-hash script.
(script []byte)
| 209 | // isScriptHashScript returns whether or not the passed script is a standard |
| 210 | // pay-to-script-hash script. |
| 211 | func isScriptHashScript(script []byte) bool { |
| 212 | return extractScriptHash(script) != nil |
| 213 | } |
| 214 | |
| 215 | // multiSigDetails houses details extracted from a standard multisig script. |
| 216 | type multiSigDetails struct { |
no test coverage detected
searching dependent graphs…