Skip to content

Commit 03ee71c

Browse files
authored
Correct estimation of timestamp in eth_callBundle (ethereum#126)
1 parent be459ef commit 03ee71c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/ethapi/api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2252,7 +2252,7 @@ func (s *BundleAPI) CallBundle(ctx context.Context, args CallBundleArgs) (map[st
22522252
}
22532253
blockNumber := big.NewInt(int64(args.BlockNumber))
22542254

2255-
timestamp := parent.Time + 1
2255+
timestamp := parent.Time + 12
22562256
if args.Timestamp != nil {
22572257
timestamp = *args.Timestamp
22582258
}

0 commit comments

Comments
 (0)