chainqueue

Blockchain transaction queue control
Log | Files | Refs | LICENSE

commit ccbbcc2157573c64eabaf3cc2cf8625d9ed99d70
parent 57191ea378c478296f2f4ab7713ec0d520267369
Author: lash <dev@holbrook.no>
Date:   Wed, 27 Apr 2022 06:23:58 +0000

Sync chainqueue state store on get

Diffstat:
Mchainqueue/store/base.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git 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,)