Skip to content

Commit

Permalink
incorrect sign on log message
Browse files Browse the repository at this point in the history
  • Loading branch information
jmjatlanta committed Feb 16, 2019
1 parent e410a8a commit 71641eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/chain/market_evaluator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ void_result call_order_update_evaluator::do_evaluate(const call_order_update_ope
*/
if (next_maintenance_time <= SOFTFORK_CORE_1465_TIME)
{
if ( _dynamic_data_obj->current_supply + o.delta_debt.amount <= _debt_asset->options.max_supply )
if ( _dynamic_data_obj->current_supply + o.delta_debt.amount > _debt_asset->options.max_supply )
ilog("Issue 1465... Borrowing and exceeding MAX_SUPPLY. Will be corrected at hardfork time.");
}
else
Expand Down

0 comments on commit 71641eb

Please sign in to comment.