Skip to content

Commit

Permalink
Merge pull request #100 from ethpandaops/feat/extend-ignore-period
Browse files Browse the repository at this point in the history
feat(mimicry): extend the ignore period for initial connection
  • Loading branch information
Savid authored Mar 9, 2023
2 parents bb571db + 11ae18a commit b3a8198
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/mimicry/p2p/execution/execution.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ func (p *Peer) Start(ctx context.Context) (<-chan error, error) {
"fork_id_next": fmt.Sprintf("%d", status.ForkID.Next),
}).Debug("got client status")

// set the ignore before time to 1 minute in the future
ignoreBefore := time.Now().Add(1 * time.Minute)
// set the ignore before time to 3 minute in the future
ignoreBefore := time.Now().Add(3 * time.Minute)
p.ignoreBefore = &ignoreBefore

return nil
Expand Down

0 comments on commit b3a8198

Please sign in to comment.