| 1152 | } |
| 1153 | |
| 1154 | uint256 GetOutputsHash(const CTransaction &txTo) { |
| 1155 | CHashWriter ss(SER_GETHASH, 0); |
| 1156 | for (unsigned int n = 0; n < txTo.vout.size(); n++) { |
| 1157 | ss << txTo.vout[n]; |
| 1158 | } |
| 1159 | return ss.GetHash(); |
| 1160 | } |
| 1161 | |
| 1162 | } // anon namespace |
| 1163 |
no test coverage detected