Skip to content

Commit

Permalink
pm: increase TicketParams expiration to 10 blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
kyriediculous committed May 5, 2021
1 parent 1e5154a commit 914e5ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pm/recipient.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var errInsufficientSenderReserve = errors.New("insufficient sender reserve")
// maxWinProb = 2^256 - 1
var maxWinProb = new(big.Int).Sub(new(big.Int).Lsh(big.NewInt(1), 256), big.NewInt(1))

var paramsExpirationBlock = big.NewInt(5)
var paramsExpirationBlock = big.NewInt(10)

// Recipient is an interface which describes an object capable
// of receiving tickets
Expand Down

0 comments on commit 914e5ec

Please sign in to comment.