| 282 | } |
| 283 | |
| 284 | h256 stringMapHash256(StringMap const& _s) |
| 285 | { |
| 286 | BytesMap bytesMap; |
| 287 | for (auto const& _v: _s) |
| 288 | bytesMap.insert(std::make_pair(bytes(_v.first.begin(), _v.first.end()), bytes(_v.second.begin(), _v.second.end()))); |
| 289 | return hash256(bytesMap); |
| 290 | } |
| 291 | |
| 292 | bytes stringMapRlp256(StringMap const& _s) |
| 293 | { |
no test coverage detected