added callback with 'deleted' objects

This commit is contained in:
Daniel Larimer 2015-06-25 15:07:13 -04:00
parent 16e90c53ac
commit e41d08d843

View file

@ -336,6 +336,10 @@ namespace graphene { namespace app {
{
_subscriptions[id](obj->to_variant());
}
else
{
_subscriptions[id](fc::variant(id));
}
}
});
}