Skip to content

Commit

Permalink
ZEUS-1772: Core Lightning REST: On-chain Receive does not show address
Browse files Browse the repository at this point in the history
  • Loading branch information
kaloudis committed Oct 17, 2023
1 parent d1fcc7b commit 3b7c58d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/CLightningREST.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export default class CLightningREST extends LND {
this.getRequest('/v1/pay/listPays').then((data: any) => ({
payments: data.pays
}));
getNewAddress = () => this.getRequest('/v1/newaddr');
getNewAddress = () => this.getRequest('/v1/newaddr?addrType=bech32');
openChannel = (data: OpenChannelRequest) => {
let request: any;
if (data.utxos && data.utxos.length > 0) {
Expand Down

0 comments on commit 3b7c58d

Please sign in to comment.