Skip to content

Commit

Permalink
Formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
clemahieu committed Oct 17, 2018
1 parent b49e9a2 commit bdff89f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rai/node/wallet.cpp
Expand Up @@ -1127,7 +1127,7 @@ void rai::wallet::work_update (rai::transaction const & transaction_a, rai::acco

void rai::wallet::work_ensure (rai::account const & account_a, rai::block_hash const & hash_a)
{
wallets.node.wallets.queue_wallet_action (rai::wallets::generate_priority, shared_from_this (), [account_a, hash_a] (rai::wallet & wallet_a){
wallets.node.wallets.queue_wallet_action (rai::wallets::generate_priority, shared_from_this (), [account_a, hash_a](rai::wallet & wallet_a) {
wallet_a.work_cache_blocking (account_a, hash_a);
});
}
Expand Down
2 changes: 1 addition & 1 deletion rai/node/wallet.hpp
Expand Up @@ -180,7 +180,7 @@ class wallets
void clear_send_ids (rai::transaction const &);
std::function<void(bool)> observer;
std::unordered_map<rai::uint256_union, std::shared_ptr<rai::wallet>> items;
std::multimap<rai::uint128_t, std::pair <std::shared_ptr<rai::wallet>, std::function<void(rai::wallet &)>>, std::greater<rai::uint128_t>> actions;
std::multimap<rai::uint128_t, std::pair<std::shared_ptr<rai::wallet>, std::function<void(rai::wallet &)>>, std::greater<rai::uint128_t>> actions;
std::mutex mutex;
std::condition_variable condition;
rai::kdf kdf;
Expand Down

0 comments on commit bdff89f

Please sign in to comment.