| 290 | } |
| 291 | |
| 292 | bytes stringMapRlp256(StringMap const& _s) |
| 293 | { |
| 294 | BytesMap bytesMap; |
| 295 | for (auto const& _v: _s) |
| 296 | bytesMap.insert(std::make_pair(bytes(_v.first.begin(), _v.first.end()), bytes(_v.second.begin(), _v.second.end()))); |
| 297 | return rlp256(bytesMap); |
| 298 | } |
| 299 | |
| 300 | BOOST_AUTO_TEST_CASE(moreTrieTests) |
| 301 | { |
no test coverage detected