Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 8078b43

Browse files
committed
Fix Pending Channels Populate
1 parent e7466a1 commit 8078b43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/lightning-core/accounts/reducer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export const actions = {
101101
method: 'pendingChannels',
102102
types: [null, PENDING_CHANNELS, FETCH_CHANNELS_FAILURE],
103103
schema: data => ({
104-
channels: _.map(data.channels, channel => ({
104+
channels: _.map(data.pending_channels, channel => ({
105105
remotePubkey: channel.identity_key,
106106
id: 'PENDING',
107107
capacity: channel.capacity,

0 commit comments

Comments
 (0)