From 44a7376219b477fd37c94f74c87c4d9f333967f3 Mon Sep 17 00:00:00 2001 From: Daniel Larimer Date: Fri, 2 Oct 2015 09:23:03 -0400 Subject: [PATCH] remove extra spam --- libraries/chain/db_debug.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/chain/db_debug.cpp b/libraries/chain/db_debug.cpp index 0c264156..9e5fc58f 100644 --- a/libraries/chain/db_debug.cpp +++ b/libraries/chain/db_debug.cpp @@ -54,14 +54,14 @@ void database::debug_dump() } for( const limit_order_object& o : db.get_index_type().indices() ) { - idump(("limit_order")(o)); + // idump(("limit_order")(o)); auto for_sale = o.amount_for_sale(); if( for_sale.asset_id == asset_id_type() ) core_in_orders += for_sale.amount; total_balances[for_sale.asset_id] += for_sale.amount; } for( const call_order_object& o : db.get_index_type().indices() ) { - idump(("call_order")(o)); +// idump(("call_order")(o)); auto col = o.get_collateral(); if( col.asset_id == asset_id_type() ) core_in_orders += col.amount; total_balances[col.asset_id] += col.amount;