Skip to content

Commit

Permalink
fix(mimicry): delay before sending txs
Browse files Browse the repository at this point in the history
  • Loading branch information
Savid committed Aug 4, 2023
1 parent ead6554 commit 765b78d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/mimicry/p2p/execution/execution.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ func (p *Peer) Start(ctx context.Context) (<-chan error, error) {
}).Debug("got client status")

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

return nil
Expand Down

0 comments on commit 765b78d

Please sign in to comment.