| 107 | }; |
| 108 | |
| 109 | std::string SighashToStr(unsigned char sighash_type) |
| 110 | { |
| 111 | const auto& it = mapSigHashTypes.find(sighash_type); |
| 112 | if (it == mapSigHashTypes.end()) return ""; |
| 113 | return it->second; |
| 114 | } |
| 115 | |
| 116 | /** |
| 117 | * Create the assembly string representation of a CScript object. |