Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

perf(crosschain): increase the outbound tracker buffer from 2 to 5 #2482

Merged
merged 2 commits into from
Jul 15, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
increase the outbound tracker buffer
  • Loading branch information
lumtis committed Jul 15, 2024
commit 4fbe176740c73dbeee85a5209659ec6fa09f2555
2 changes: 1 addition & 1 deletion x/crosschain/keeper/msg_server_add_outbound_tracker.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
)

// MaxOutboundTrackerHashes is the maximum number of hashes that can be stored in the outbound transaction tracker
const MaxOutboundTrackerHashes = 2
const MaxOutboundTrackerHashes = 5

// AddOutboundTracker adds a new record to the outbound transaction tracker.
// only the admin policy account and the observer validators are authorized to broadcast this message without proof.
Expand Down
Loading