mirror of
https://github.com/aljazceru/python-teos.git
synced 2025-12-18 14:44:21 +01:00
9 lines
132 B
Python
9 lines
132 B
Python
from queue import Queue
|
|
|
|
|
|
def init():
|
|
global block_queue, registered_txs
|
|
|
|
block_queue = Queue()
|
|
registered_txs = dict()
|