mirror of
https://github.com/aljazceru/python-teos.git
synced 2025-12-18 14:44:21 +01:00
More clean up
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
|
import logging
|
||||||
|
|
||||||
from pisa.utils.auth_proxy import AuthServiceProxy
|
from pisa.utils.auth_proxy import AuthServiceProxy
|
||||||
import pisa.conf as conf
|
import pisa.conf as conf
|
||||||
import logging
|
|
||||||
|
|
||||||
HOST = 'localhost'
|
HOST = 'localhost'
|
||||||
PORT = 9814
|
PORT = 9814
|
||||||
|
|||||||
@@ -1,9 +1,11 @@
|
|||||||
|
import json
|
||||||
|
from flask import Flask, request, Response, abort, jsonify
|
||||||
|
|
||||||
from pisa import HOST, PORT, logging, bitcoin_cli
|
from pisa import HOST, PORT, logging, bitcoin_cli
|
||||||
from pisa.watcher import Watcher
|
from pisa.watcher import Watcher
|
||||||
from pisa.inspector import Inspector
|
from pisa.inspector import Inspector
|
||||||
from pisa.appointment import Appointment
|
from pisa.appointment import Appointment
|
||||||
from flask import Flask, request, Response, abort, jsonify
|
|
||||||
import json
|
|
||||||
|
|
||||||
# ToDo: #5-add-async-to-api
|
# ToDo: #5-add-async-to-api
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
|
|||||||
@@ -21,5 +21,3 @@ class Appointment:
|
|||||||
|
|
||||||
# ToDO: #3-improve-appointment-structure
|
# ToDO: #3-improve-appointment-structure
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
from binascii import unhexlify, hexlify
|
|
||||||
from hashlib import sha256
|
from hashlib import sha256
|
||||||
|
from binascii import unhexlify, hexlify
|
||||||
from cryptography.hazmat.primitives.ciphers.aead import AESGCM
|
from cryptography.hazmat.primitives.ciphers.aead import AESGCM
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import re
|
import re
|
||||||
import pisa.conf as conf
|
|
||||||
from pisa import errors
|
from pisa import errors
|
||||||
|
import pisa.conf as conf
|
||||||
from pisa import logging, bitcoin_cli
|
from pisa import logging, bitcoin_cli
|
||||||
from pisa.appointment import Appointment
|
from pisa.appointment import Appointment
|
||||||
from pisa.utils.auth_proxy import JSONRPCException
|
from pisa.utils.auth_proxy import JSONRPCException
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
from sys import argv
|
from sys import argv
|
||||||
from getopt import getopt
|
from getopt import getopt
|
||||||
|
|
||||||
from pisa import logging
|
from pisa import logging
|
||||||
from pisa.api import start_api
|
from pisa.api import start_api
|
||||||
from pisa.tools import can_connect_to_bitcoind, in_correct_network
|
from pisa.tools import can_connect_to_bitcoind, in_correct_network
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
import re
|
import re
|
||||||
|
from http.client import HTTPException
|
||||||
|
|
||||||
import pisa.conf as conf
|
import pisa.conf as conf
|
||||||
from pisa import logging, bitcoin_cli
|
from pisa import logging, bitcoin_cli
|
||||||
from pisa.utils.auth_proxy import JSONRPCException
|
from pisa.utils.auth_proxy import JSONRPCException
|
||||||
from pisa.rpc_errors import RPC_INVALID_ADDRESS_OR_KEY
|
from pisa.rpc_errors import RPC_INVALID_ADDRESS_OR_KEY
|
||||||
from http.client import HTTPException
|
|
||||||
|
|
||||||
|
|
||||||
def check_tx_in_chain(tx_id, parent='', tx_label='transaction'):
|
def check_tx_in_chain(tx_id, parent='', tx_label='transaction'):
|
||||||
|
|||||||
Reference in New Issue
Block a user