Skip to content

Commit

Permalink
feat(mimicry): extend the ignore period for initial connection
Browse files Browse the repository at this point in the history
  • Loading branch information
Savid committed Mar 9, 2023
1 parent b73f580 commit 11ae18a
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 @@ -190,8 +190,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 11ae18a

Please sign in to comment.