diff --git a/chainqueue/store/base.py b/chainqueue/store/base.py index f40e7ef..1c116a1 100644 --- a/chainqueue/store/base.py +++ b/chainqueue/store/base.py @@ -67,6 +67,7 @@ class Store: s = self.index_store.get(k) except FileNotFoundError: raise NotLocalTxError(k) + self.state_store.sync() v = self.state_store.get(s) return (s, v,)