Skip to content

Commit

Permalink
Merge pull request EOSIO#3639 from EOSIO/3638-fix-check-actor-list
Browse files Browse the repository at this point in the history
Fix bug in controller::check_actor_list
  • Loading branch information
arhag authored May 31, 2018
2 parents 0437d0f + 949be1c commit 591e60c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/chain/controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1047,7 +1047,7 @@ struct controller_impl {
vector<account_name> blacklisted;
blacklisted.reserve( actors.size() );
set_intersection( actors.begin(), actors.end(),
conf.actor_blacklist.begin(), conf.actor_whitelist.end(),
conf.actor_blacklist.begin(), conf.actor_blacklist.end(),
std::back_inserter(blacklisted)
);
EOS_ASSERT( blacklisted.size() == 0, actor_blacklist_exception,
Expand Down

0 comments on commit 591e60c

Please sign in to comment.