mirror of
https://github.com/aljazceru/python-teos.git
synced 2026-01-12 19:04:24 +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()
|