Skip to content

Commit

Permalink
Merge pull request #91 from ethpandaops/fix/mimicry-ignore-period
Browse files Browse the repository at this point in the history
fit(mimicry): raise ignore period for initial transaction pool burst
  • Loading branch information
Savid authored Mar 3, 2023
2 parents 822f35e + 9f30375 commit 56ed1bc
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 @@ -198,8 +198,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 15 seconds in the future
ignoreBefore := time.Now().Add(15 * time.Second)
// set the ignore before time to 1 minute in the future
ignoreBefore := time.Now().Add(1 * time.Minute)
p.ignoreBefore = &ignoreBefore

return nil
Expand Down

0 comments on commit 56ed1bc

Please sign in to comment.