1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00

Merge pull request #9 from newton-blockchain/AleksejMelman-patch-1

Fixes compilation error of lite-client on windows
This commit is contained in:
AleksejMelman 2021-02-09 14:19:03 +01:00 committed by GitHub
commit 523746f7f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3461,7 +3461,7 @@ bool TestNode::ValidatorLoadInfo::store_record(const td::Bits256& key, const blo
if (it == vset_map.end()) {
return false;
}
created.at(it->second) = std::make_pair<td::int64, td::int64>(mc_cnt.total, shard_cnt.total);
created.at(it->second) = std::make_pair(mc_cnt.total, shard_cnt.total);
return true;
}