refactor into TriggerRunner

This commit is contained in:
Tim Olson
2023-09-19 16:05:04 -04:00
parent 68647364cd
commit 0ff6a1ae0b
23 changed files with 379 additions and 171 deletions

View File

@@ -1,5 +1,5 @@
from dexorder.base.blockstate import BlockState, BlockDict
from dexorder.db.model.block import Block
from dexorder.database.model.block import Block
block_10 = Block(chain=1, height=10, hash=bytes.fromhex('10'), parent=bytes.fromhex('09'), data=None)
block_11a = Block(chain=1, height=11, hash=bytes.fromhex('1a'), parent=block_10.hash, data=None)