mirror of
https://github.com/aljazceru/lnd-manageJ.git
synced 2026-01-24 00:14:25 +01:00
15 lines
437 B
Java
15 lines
437 B
Java
package de.cotto.lndmanagej.model;
|
|
|
|
public class CoopClosedChannel extends ClosedChannel {
|
|
public CoopClosedChannel(
|
|
ChannelId channelId,
|
|
ChannelPoint channelPoint,
|
|
Coins capacity,
|
|
Pubkey ownPubkey,
|
|
Pubkey remotePubkey,
|
|
String closeTransactionHash
|
|
) {
|
|
super(channelId, channelPoint, capacity, ownPubkey, remotePubkey, closeTransactionHash);
|
|
}
|
|
}
|