diff --git a/libraries/chain/db_market.cpp b/libraries/chain/db_market.cpp index c90c737d..b9b3bb7c 100644 --- a/libraries/chain/db_market.cpp +++ b/libraries/chain/db_market.cpp @@ -405,7 +405,7 @@ bool database::check_call_orders( const asset_object& mia, bool enable_black_swa if( usd_to_buy * match_price > call_itr->get_collateral() ) { FC_ASSERT( enable_black_swan ); - elog( "black swan, we do not have enough collateral to cover at this price" ); + //elog( "black swan, we do not have enough collateral to cover at this price" ); globally_settle_asset( mia, call_itr->get_debt() / call_itr->get_collateral() ); return true; } diff --git a/tests/tests/operation_tests.cpp b/tests/tests/operation_tests.cpp index f3c824b6..ed182860 100644 --- a/tests/tests/operation_tests.cpp +++ b/tests/tests/operation_tests.cpp @@ -247,7 +247,6 @@ BOOST_AUTO_TEST_CASE( black_swan ) auto order = create_sell_order( borrower2, bitusd.amount(1000), core.amount(3000) ); FC_ASSERT( bitusd.bitasset_data(db).has_settlement() ); - wdump(( bitusd.bitasset_data(db) )); force_settle( borrower, bitusd.amount(100) );