Skip to content

Commit

Permalink
Merge branch 'bug/267-fix-chain_test' into 'develop'
Browse files Browse the repository at this point in the history
bug #267 Fix error in chain_test in gitlab autobuild

See merge request PBSA/peerplays!55
  • Loading branch information
serkixenos committed Jan 28, 2022
2 parents 6f6811e + 8c3a424 commit 10799a2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libraries/db/include/graphene/db/undo_database.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ namespace graphene { namespace db {

struct undo_state
{
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;
unordered_map<object_id_type, unique_ptr<object> > removed;
unordered_map<object_id_type, unique_ptr<object> > old_values;
unordered_map<object_id_type, object_id_type> old_index_next_ids;
std::set<object_id_type, std::greater<object_id_type> > new_ids;
unordered_map<object_id_type, unique_ptr<object> > removed;
};


Expand Down

0 comments on commit 10799a2

Please sign in to comment.