mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-22 00:24:19 +01:00
pytest: Set correct header in mock bitcoind
This commit is contained in:
@@ -8,6 +8,7 @@ from cheroot.wsgi import Server
|
|||||||
from cheroot.wsgi import PathInfoDispatcher
|
from cheroot.wsgi import PathInfoDispatcher
|
||||||
|
|
||||||
import decimal
|
import decimal
|
||||||
|
import flask
|
||||||
import json
|
import json
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
@@ -62,9 +63,11 @@ class ProxiedBitcoinD(BitcoinD):
|
|||||||
if isinstance(r, list):
|
if isinstance(r, list):
|
||||||
reply = [self._handle_request(subreq) for subreq in r]
|
reply = [self._handle_request(subreq) for subreq in r]
|
||||||
else:
|
else:
|
||||||
reply = self._handle_request(subreq)
|
reply = self._handle_request(r)
|
||||||
|
|
||||||
return json.dumps(reply, cls=DecimalEncoder)
|
response = flask.Response(json.dumps(reply, cls=DecimalEncoder))
|
||||||
|
response.headers['Content-Type'] = 'application/json'
|
||||||
|
return response
|
||||||
|
|
||||||
def start(self):
|
def start(self):
|
||||||
d = PathInfoDispatcher({'/': self.app})
|
d = PathInfoDispatcher({'/': self.app})
|
||||||
|
|||||||
Reference in New Issue
Block a user