Fix accidental reversion of #615 fix by b175cc7feb

This commit is contained in:
theoreticalbts 2016-03-16 15:50:03 -04:00
parent 755f9ecf38
commit e955b06c42

View file

@ -214,7 +214,7 @@ namespace graphene { namespace chain {
bool feed_is_expired_before_hardfork_615(time_point_sec current_time)const
{ return feed_expiration_time() >= current_time; }
bool feed_is_expired(time_point_sec current_time)const
{ return feed_expiration_time() >= current_time; }
{ return feed_expiration_time() <= current_time; }
void update_median_feeds(time_point_sec current_time);
};