(s)
| 115 | return v |
| 116 | |
| 117 | def _CastToBool(s): |
| 118 | for i in range(len(s)): |
| 119 | sv = s[i] |
| 120 | if sv != 0: |
| 121 | if (i == (len(s) - 1)) and (sv == 0x80): |
| 122 | return False |
| 123 | return True |
| 124 | |
| 125 | return False |
| 126 | |
| 127 | |
| 128 | def _CheckSig(sig, pubkey, script, txTo, inIdx, err_raiser): |
no outgoing calls
no test coverage detected