From f5e270c770e1760cf65d31b818a8c4942b4eddac Mon Sep 17 00:00:00 2001 From: wiz Date: Mon, 12 Oct 2020 14:26:01 +0900 Subject: [PATCH] Use https:// instead of http:// to query mempool.space API --- backend/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/index.ts b/backend/src/index.ts index aeb715385..b297df58c 100644 --- a/backend/src/index.ts +++ b/backend/src/index.ts @@ -178,7 +178,7 @@ class Server { } else { this.app .get(config.API_ENDPOINT + 'donations', (req, res) => { - req.pipe(request('http://mempool.space/api/v1/donations')).pipe(res); + req.pipe(request('https://mempool.space/api/v1/donations')).pipe(res); }); } }