Files
python-teos/pisa-btc/pisa/shared.py
Sergi Delgado 39a9a92bdb pisa-btc initial commit
Contains basic structure, zmq so subscribe to blockid messages, api and so on. Still WIP
2019-08-09 15:00:02 +01:00

9 lines
132 B
Python

from queue import Queue
def init():
global block_queue, registered_txs
block_queue = Queue()
registered_txs = dict()