More bug fixes

This commit is contained in:
Erik Johnston 2014-12-08 17:50:56 +00:00
parent ee3df06183
commit 609c31e8df
5 changed files with 35 additions and 30 deletions

View file

@ -157,11 +157,4 @@ class FrozenEvent(EventBase):
def get_dict(self):
# We need to unfreeze what we return
d = _unfreeze(self._event_dict)
d.update({
"signatures": self.signatures,
"unsigned": self.unsigned,
})
return d
return _unfreeze(super(FrozenEvent, self).get_dict())