From 4f0139c38f8cc0669692fd1e3c74196629de9a7d Mon Sep 17 00:00:00 2001 From: Stepan Snigirev Date: Thu, 25 Aug 2022 11:53:45 +0200 Subject: [PATCH] Feature: add faucet and exfund extensions (#1820) * add faucet and exfund extensions * fix tests * bump exfund extension version * bump extension versions * fix pip hash * bump faucet again * kick * bump exfund * bump exfund Co-authored-by: Kim Neunert Co-authored-by: Manolis Mandrapilias <70536101+moneymanolis@users.noreply.github.com> --- requirements.in | 2 ++ requirements.txt | 6 ++++++ src/cryptoadvance/specter/config.py | 2 ++ tests/test_ep_controller.py | 2 ++ 4 files changed, 12 insertions(+) diff --git a/requirements.in b/requirements.in index 010d2d94e0..8f9edc76a8 100644 --- a/requirements.in +++ b/requirements.in @@ -28,3 +28,5 @@ gunicorn==20.1.0 # Extensions cryptoadvance-liquidissuer==0.2.4 +specterext-exfund==0.1.6 +specterext-faucet==0.1.2 diff --git a/requirements.txt b/requirements.txt index be0d8bd634..42f34bf5ab 100644 --- a/requirements.txt +++ b/requirements.txt @@ -409,6 +409,12 @@ six==1.16.0 \ # protobuf # pyopenssl # python-dateutil +specterext-exfund==0.1.6 \ + --hash=sha256:8f31a6da089a3c7b4bfac50775bc2481ab88a65fec58300321d7516916c51f61 + # via -r requirements.in +specterext-faucet==0.1.2 \ + --hash=sha256:86db78a6c41688152cfeec14efafd6d06c97e6edd9735461ee897495f90cb2e8 + # via -r requirements.in stem==1.8.0 \ --hash=sha256:a0b48ea6224e95f22aa34c0bc3415f0eb4667ddeae3dfb5e32a6920c185568c2 # via -r requirements.in diff --git a/src/cryptoadvance/specter/config.py b/src/cryptoadvance/specter/config.py index 808c461fe6..9ae6ca2b82 100644 --- a/src/cryptoadvance/specter/config.py +++ b/src/cryptoadvance/specter/config.py @@ -173,6 +173,8 @@ class BaseConfig(object): "cryptoadvance.specterext.liquidissuer.service", "cryptoadvance.specter.services.bitcoinreserve.service", "cryptoadvance.specterext.devhelp.service", + "cryptoadvance.specterext.exfund.service", + "cryptoadvance.specterext.faucet.service", ] # This is just a placeholder in order to be aware that you cannot set this diff --git a/tests/test_ep_controller.py b/tests/test_ep_controller.py index 555dea1001..78b60cd5d9 100644 --- a/tests/test_ep_controller.py +++ b/tests/test_ep_controller.py @@ -204,6 +204,8 @@ def view_function_report(myapp): devices_endpoint.new_device_manual devices_endpoint.new_device_mnemonic devices_endpoint.new_device_type +exfund_endpoint.index +exfund_endpoint.static hwi_server.api hwi_server.hwi_bridge_settings hwi_server.index