Skip to content

Commit

Permalink
add support for empty descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbosworth committed Sep 6, 2020
1 parent b31ad06 commit 8647937
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 15 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Versions

## 49.9.2

- `createUnsignedRequest`: Add support for empty descriptions
- `parsePaymentRequest`: Improve consistency with `decodePaymentRequest`

## 49.9.1

- `getMethods`: Add method to list available methods and related permissions
Expand Down
39 changes: 27 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"bolt09": "0.1.1",
"cors": "2.8.5",
"express": "4.17.1",
"invoices": "1.1.2",
"invoices": "1.1.3",
"is-base64": "1.1.0",
"lightning": "2.0.40",
"macaroon": "3.0.4",
Expand Down Expand Up @@ -60,5 +60,5 @@
"tower_server-integration-tests": "tap --no-coverage test/tower_serverrpc-integration/*.js",
"wallet-integration-tests": "tap --no-coverage test/walletrpc-integration/*.js"
},
"version": "49.9.1"
"version": "49.9.2"
}
2 changes: 1 addition & 1 deletion routers/grpc_proxy_server.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ module.exports = ({bind, cert, log, path, port, socket, stream, tls}) => {

secure.listen(tls.port);

log(`Listening for TLS: ${tls.port}`);
log(null, `Listening for TLS: ${tls.port}`);
}

app.use(cors());
Expand Down

0 comments on commit 8647937

Please sign in to comment.