Skip to content

Commit

Permalink
Windows lambda name resolution.
Browse files Browse the repository at this point in the history
  • Loading branch information
clemahieu committed Mar 8, 2017
1 parent f71bd1a commit 2a45c7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rai/node/bootstrap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,13 +155,13 @@ rai::sync_result rai::pull_synchronization::target (MDB_txn * transaction_a, rai
case rai::process_result::old:
result = rai::sync_result::success;
// It definitely doesn't need to be in unchecked because it's in the ledger
node.store.unchecked_del (transaction_a, block_a.hash ());
this->node.store.unchecked_del (transaction_a, block_a.hash ());
break;
case rai::process_result::fork:
{
result = rai::sync_result::fork;
// Stop synchronizing and wait for fork resolution
node.store.unchecked_del (transaction_a, block_a.hash ());
this->node.store.unchecked_del (transaction_a, block_a.hash ());
auto node_l (this->node.shared ());
auto block (node_l->ledger.forked_block (transaction_a, block_a));
auto attempt_l (attempt);
Expand Down

0 comments on commit 2a45c7c

Please sign in to comment.