channeldb test: rename ForceClose->RemoteForceClose

This commit is contained in:
Johan T. Halseth 2018-04-04 08:57:55 +02:00
parent cde862e7e0
commit c51f6352c3
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26

@ -606,7 +606,7 @@ func TestChannelStateTransition(t *testing.T) {
SettledBalance: btcutil.Amount(500),
TimeLockedBalance: btcutil.Amount(10000),
IsPending: false,
CloseType: ForceClose,
CloseType: RemoteForceClose,
}
if err := updatedChannel[0].CloseChannel(closeSummary); err != nil {
t.Fatalf("unable to delete updated channel: %v", err)
@ -770,7 +770,7 @@ func TestFetchClosedChannels(t *testing.T) {
Capacity: state.Capacity,
SettledBalance: state.LocalCommitment.LocalBalance.ToSatoshis(),
TimeLockedBalance: state.RemoteCommitment.LocalBalance.ToSatoshis() + 10000,
CloseType: ForceClose,
CloseType: RemoteForceClose,
IsPending: true,
}
if err := state.CloseChannel(summary); err != nil {