Skip to content

Commit

Permalink
increase churner expiry
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Apr 13, 2024
1 parent 66a9a6f commit e4c88ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions operators/churner/churner.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

var (
bipMultiplier = big.NewInt(10000)
secondsTillExpiry = 90 * time.Second
secondsTillExpiry = 3600 * time.Second
)

type ChurnRequest struct {
Expand Down Expand Up @@ -285,7 +285,7 @@ func (c *churner) sign(ctx context.Context, operatorToRegisterAddress gethcommon
var salt [32]byte
copy(salt[:], saltKeccak256)

// set expiry to 90s in the future
// set expiry to 3600s in the future
expiry := big.NewInt(now.Add(secondsTillExpiry).Unix())

// sign and return signature
Expand Down

0 comments on commit e4c88ee

Please sign in to comment.