breacharbiter_test: use RemoteUnilateralCloseSummary and LocalForceCloseSummary
This commit is contained in:
parent
40b8cf0adb
commit
634e23720e
@ -951,11 +951,12 @@ func TestBreachHandoffSuccess(t *testing.T) {
|
|||||||
// Instantiate a breach arbiter to handle the breach of alice's channel.
|
// Instantiate a breach arbiter to handle the breach of alice's channel.
|
||||||
alicePoint := alice.ChannelPoint()
|
alicePoint := alice.ChannelPoint()
|
||||||
spendEvents := contractcourt.ChainEventSubscription{
|
spendEvents := contractcourt.ChainEventSubscription{
|
||||||
UnilateralClosure: make(chan *lnwallet.UnilateralCloseSummary, 1),
|
RemoteUnilateralClosure: make(chan *lnwallet.UnilateralCloseSummary, 1),
|
||||||
CooperativeClosure: make(chan struct{}, 1),
|
LocalUnilateralClosure: make(chan *contractcourt.LocalUnilateralCloseInfo, 1),
|
||||||
ContractBreach: make(chan *lnwallet.BreachRetribution, 1),
|
CooperativeClosure: make(chan struct{}, 1),
|
||||||
ProcessACK: make(chan error, 1),
|
ContractBreach: make(chan *lnwallet.BreachRetribution, 1),
|
||||||
ChanPoint: *alicePoint,
|
ProcessACK: make(chan error, 1),
|
||||||
|
ChanPoint: *alicePoint,
|
||||||
Cancel: func() {
|
Cancel: func() {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
@ -1039,11 +1040,12 @@ func TestBreachHandoffFail(t *testing.T) {
|
|||||||
// Instantiate a breach arbiter to handle the breach of alice's channel.
|
// Instantiate a breach arbiter to handle the breach of alice's channel.
|
||||||
alicePoint := alice.ChannelPoint()
|
alicePoint := alice.ChannelPoint()
|
||||||
spendEvents := contractcourt.ChainEventSubscription{
|
spendEvents := contractcourt.ChainEventSubscription{
|
||||||
UnilateralClosure: make(chan *lnwallet.UnilateralCloseSummary, 1),
|
RemoteUnilateralClosure: make(chan *lnwallet.UnilateralCloseSummary, 1),
|
||||||
CooperativeClosure: make(chan struct{}, 1),
|
LocalUnilateralClosure: make(chan *contractcourt.LocalUnilateralCloseInfo, 1),
|
||||||
ContractBreach: make(chan *lnwallet.BreachRetribution, 1),
|
CooperativeClosure: make(chan struct{}, 1),
|
||||||
ProcessACK: make(chan error, 1),
|
ContractBreach: make(chan *lnwallet.BreachRetribution, 1),
|
||||||
ChanPoint: *alicePoint,
|
ProcessACK: make(chan error, 1),
|
||||||
|
ChanPoint: *alicePoint,
|
||||||
Cancel: func() {
|
Cancel: func() {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user