diff options
author | Luke Parker <lukeparker5132@gmail.com> | 2022-06-01 19:38:42 -0400 |
---|---|---|
committer | Luke Parker <lukeparker5132@gmail.com> | 2022-06-01 19:38:42 -0400 |
commit | 16f8e042b5af06bc5ef194eaabaf4df0f27fbe1c (patch) | |
tree | 17521bd1745c69978d0f4085d7c83ab176b19df6 | |
parent | Improve consistency between on_money_received and on_money_received_unconfirmed (diff) | |
download | monero-16f8e042b5af06bc5ef194eaabaf4df0f27fbe1c.tar.xz |
Remove erraneous commas
-rw-r--r-- | src/wallet/api/wallet.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index fdf55ae21..f8ab24383 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -161,9 +161,9 @@ struct Wallet2CallbackImpl : public tools::i_wallet2_callback LOG_PRINT_L3(__FUNCTION__ << ": money received. height: " << height << ", tx: " << tx_hash - << ", amount: " << print_money(amount - burnt), - << ", burnt: " << print_money(burnt), - << ", raw_output_value: " << print_money(amount), + << ", amount: " << print_money(amount - burnt) + << ", burnt: " << print_money(burnt) + << ", raw_output_value: " << print_money(amount) << ", idx: " << subaddr_index); // do not signal on received tx if wallet is not syncronized completely if (m_listener && m_wallet->synchronized()) { |