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

Commit 7ba9524

Browse files
Display blocks to maturity on channel detail view.
1 parent 68e979b commit 7ba9524

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/view/channel-detail.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ const ChannelDetailView = ({ store, nav }) => (
4242
{store.selectedChannel.closingTxId}
4343
</DetailField>
4444
) : null}
45+
{store.selectedChannel.blocksTilMaturity ? (
46+
<DetailField name="Blocks Until Maturity">
47+
{store.selectedChannel.blocksTilMaturity}
48+
</DetailField>
49+
) : null}
4550
<DetailField name="Remote Node Public Key">
4651
{store.selectedChannel.remotePubkey}
4752
</DetailField>

0 commit comments

Comments
 (0)