Remove uuid from /order/<uuid>/bump response

The uuid is already a request parameter, so no need to include it in the
response.
This commit is contained in:
Blockstream Satellite 2022-01-19 16:30:32 -03:00
parent 73f7254c6a
commit 31b0d5fa17

View file

@ -212,7 +212,6 @@ class BumpOrderResource(Resource):
return {
'auth_token': order_helpers.compute_auth_token(uuid),
'uuid': uuid,
'lightning_invoice': json.loads(invoice.invoice)
}