Merge branch 'bug/267-fix-chain_test' into 'develop'

bug #267 Fix error in chain_test in gitlab autobuild

See merge request PBSA/peerplays!55
This commit is contained in:
serkixenos 2022-01-28 15:05:49 +00:00
commit 10799a2148

View file

@ -36,7 +36,7 @@ namespace graphene { namespace db {
{
unordered_map<object_id_type, unique_ptr<object> > old_values;
unordered_map<object_id_type, object_id_type> old_index_next_ids;
std::unordered_set<object_id_type> new_ids;
std::set<object_id_type, std::greater<object_id_type> > new_ids;
unordered_map<object_id_type, unique_ptr<object> > removed;
};