| 1236 | |
| 1237 | template <class T> |
| 1238 | uint256 GetOutputsHash(const T& txTo) |
| 1239 | { |
| 1240 | CHashWriter ss(SER_GETHASH, 0); |
| 1241 | for (const auto& txout : txTo.vout) { |
| 1242 | ss << txout; |
| 1243 | } |
| 1244 | return ss.GetHash(); |
| 1245 | } |
| 1246 | |
| 1247 | } // namespace |
| 1248 |
no test coverage detected