Skip to content

Commit

Permalink
Resolve logging issue with wallet info
Browse files Browse the repository at this point in the history
  • Loading branch information
tmancey committed Feb 20, 2019
1 parent c0505c2 commit 9a2126d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/confirmations_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -290,12 +290,12 @@ void ConfirmationsImpl::SetWalletInfo(std::unique_ptr<WalletInfo> info) {
return;
}

wallet_info_ = WalletInfo(*info);

BLOG(INFO) << "SetWalletInfo:";
BLOG(INFO) << " Payment id: " << wallet_info_.payment_id;
BLOG(INFO) << " Public key: " << wallet_info_.public_key;

wallet_info_ = WalletInfo(*info);

CheckReady();
}

Expand Down

0 comments on commit 9a2126d

Please sign in to comment.