commit 64bcb96b15a08fc2085722f5c9029730f313dac9 parent a7201a55df56c002a817b8a003eff788129b8b79 Author: nickfarrow <nicholas.w.farrow@gmail.com> Date: Sun, 7 Nov 2021 16:21:45 +1100 Rename /pay to /node for clarity Diffstat:
M | gateways/ssh_tunnel.py | | | 2 | +- |
R | pay/__init__.py -> node/pay/__init__.py | | | 0 | |
R | pay/bitcoind.py -> node/pay/bitcoind.py | | | 0 | |
R | pay/lnd.py -> node/pay/lnd.py | | | 0 | |
M | satsale.py | | | 4 | ++-- |
5 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/gateways/ssh_tunnel.py b/gateways/ssh_tunnel.py @@ -2,7 +2,7 @@ import subprocess import time import config -from pay import bitcoind +from node import bitcoind def open_tunnel(host, port): diff --git a/pay/__init__.py b/node/pay/__init__.py diff --git a/pay/bitcoind.py b/node/pay/bitcoind.py diff --git a/pay/lnd.py b/node/pay/lnd.py diff --git a/satsale.py b/satsale.py @@ -19,8 +19,8 @@ from gateways import ssh_tunnel import config from payments import database from payments.price_feed import get_btc_value -from pay import bitcoind -from pay import lnd +from node import bitcoind +from node import lnd from gateways import woo_webhook app = Flask(__name__)