Skip to content
This repository was archived by the owner on Oct 20, 2024. It is now read-only.

Commit 0fbea88

Browse files
authored
Increment sleep to 5ms (#52)
1 parent 3ea0dd8 commit 0fbea88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/modules/relay/relayer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ func (r *Relayer) MapUserOpHashToClientID() gin.HandlerFunc {
157157
func (r *Relayer) SendUserOperation() modules.BatchHandlerFunc {
158158
return func(ctx *modules.BatchHandlerCtx) error {
159159
// TODO: Increment badger nextTxnTs to read latest data from MapUserOpHashToClientID.
160-
time.Sleep(2 * time.Millisecond)
160+
time.Sleep(5 * time.Millisecond)
161161

162162
var del []string
163163
err := r.db.Update(func(txn *badger.Txn) error {

0 commit comments

Comments
 (0)