Skip to content

Commit

Permalink
GH-14 Fix merge issue
Browse files Browse the repository at this point in the history
  • Loading branch information
heifner committed Apr 19, 2024
1 parent 2781b0f commit 6eb9d32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/chain/include/eosio/chain/vote_processor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class vote_processor_t {
auto bsp = get_block(v.msg->block_id, g);
// g is unlocked
if (bsp) {
vote_status s = bsp->aggregate_vote(*v.msg);
vote_status s = bsp->aggregate_vote(v.connection_id, *v.msg);
emit(v.connection_id, s, v.msg);

g.lock();
Expand Down Expand Up @@ -230,7 +230,7 @@ class vote_processor_t {
g.lock();
queue_for_later(connection_id, msg);
} else {
vote_status s = bsp->aggregate_vote(*msg);
vote_status s = bsp->aggregate_vote(connection_id, *msg);
emit(connection_id, s, msg);

g.lock();
Expand Down

0 comments on commit 6eb9d32

Please sign in to comment.