diff --git a/chain/actors/actor_paych.go b/chain/actors/actor_paych.go index 996bcabe3..defe072c1 100644 --- a/chain/actors/actor_paych.go +++ b/chain/actors/actor_paych.go @@ -191,7 +191,7 @@ func (pca PaymentChannelActor) UpdateChannelState(act *types.Actor, vmctx types. self.ToSend = newSendBalance if sv.MinCloseHeight != 0 { - if self.ClosingAt < sv.MinCloseHeight { + if self.ClosingAt != 0 && self.ClosingAt < sv.MinCloseHeight { self.ClosingAt = sv.MinCloseHeight } if self.MinCloseHeight < sv.MinCloseHeight {