WIP implement sync done in resume sync for mock driver

This commit is contained in:
lash
2022-03-29 11:28:37 +00:00
parent ecb123f495
commit 7078adaf7e
3 changed files with 10 additions and 3 deletions

View File

@@ -195,7 +195,10 @@ class MockDriver(SyncDriver):
def get(self, conn, item):
return self.blocks[item.cursor]
try:
return self.blocks[item.cursor]
except KeyError:
raise NoBlockForYou()
def process(self, conn, item, block, tx_start):