| 172 | } |
| 173 | |
| 174 | static uint32_t GetHashType(const valtype &vchSig) { |
| 175 | if (vchSig.size() == 0) { |
| 176 | return 0; |
| 177 | } |
| 178 | |
| 179 | return vchSig[vchSig.size() - 1]; |
| 180 | } |
| 181 | |
| 182 | static void CleanupScriptCode(CScript &scriptCode, |
| 183 | const std::vector<unsigned char> &vchSig, |
no test coverage detected