Skip to content

Commit

Permalink
Formatting fix (#3598)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsiganos authored Dec 8, 2021
1 parent 1767081 commit d0b21c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nano/core_test/wallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1144,12 +1144,12 @@ TEST (wallet, foreach_representative_deadlock)
bool set = false;
node.wallets.foreach_representative ([&node, &set, &system] (nano::public_key const & pub, nano::raw_key const & prv) {
node.wallets.foreach_representative ([&node, &set, &system] (nano::public_key const & pub, nano::raw_key const & prv) {
ASSERT_TIMELY(5s, node.wallets.mutex.try_lock () == 1);
node.wallets.mutex.unlock ();
ASSERT_TIMELY (5s, node.wallets.mutex.try_lock () == 1);
node.wallets.mutex.unlock ();
set = true;
});
});
ASSERT_TRUE (set);
});
ASSERT_TRUE (set);
}

TEST (wallet, search_pending)
Expand Down

0 comments on commit d0b21c1

Please sign in to comment.