aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core
diff options
context:
space:
mode:
authorZachary Michaels <mikezackles@gmail.com>2014-07-17 11:10:27 -0400
committerZachary Michaels <mikezackles@gmail.com>2014-07-17 16:56:28 -0400
commitc017bb06566c2ef2f3aed29cbe2050ca264ecb2c (patch)
tree61d27ef9da57ef0e6ec736f0e2c172e277e96895 /src/cryptonote_core
parentMinimum tx fee for entering pool (diff)
downloadmonero-c017bb06566c2ef2f3aed29cbe2050ca264ecb2c.tar.xz
Use print_money in log
Diffstat (limited to 'src/cryptonote_core')
-rw-r--r--src/cryptonote_core/tx_pool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/tx_pool.cpp b/src/cryptonote_core/tx_pool.cpp
index 3c924d5e8..0c13a508c 100644
--- a/src/cryptonote_core/tx_pool.cpp
+++ b/src/cryptonote_core/tx_pool.cpp
@@ -54,7 +54,7 @@ namespace cryptonote
if(outputs_amount >= inputs_amount)
{
- LOG_PRINT_L0("transaction use more money then it has: use " << outputs_amount << ", have " << inputs_amount);
+ LOG_PRINT_L0("transaction use more money then it has: use " << print_money(outputs_amount) << ", have " << print_money(inputs_amount));
tvc.m_verifivation_failed = true;
return false;
}