From e955b06c42cf93c42414f74cd54b94092451892e Mon Sep 17 00:00:00 2001 From: theoreticalbts Date: Wed, 16 Mar 2016 15:50:03 -0400 Subject: [PATCH] Fix accidental reversion of #615 fix by b175cc7feb4accaeab5e85ebfcddfe7d2264c422 --- libraries/chain/include/graphene/chain/asset_object.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/chain/include/graphene/chain/asset_object.hpp b/libraries/chain/include/graphene/chain/asset_object.hpp index 4f4a5357..28d5974e 100644 --- a/libraries/chain/include/graphene/chain/asset_object.hpp +++ b/libraries/chain/include/graphene/chain/asset_object.hpp @@ -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); };