github.com/filecoin-project/specs-actors/v4@v4.0.2/actors/builtin/paych/policy.go (about)

     1  package paych
     2  
     3  import (
     4  	"math"
     5  
     6  	"github.com/filecoin-project/specs-actors/v4/actors/builtin"
     7  )
     8  
     9  // Maximum number of lanes in a channel.
    10  const MaxLane = math.MaxInt64
    11  
    12  const SettleDelay = builtin.EpochsInHour * 12
    13  
    14  // Maximum size of a secret that can be submitted with a payment channel update (in bytes).
    15  const MaxSecretSize = 256