Skip to content

Commit

Permalink
perf(crosschain): increase the outbound tracker buffer from 2 to 5 (#…
Browse files Browse the repository at this point in the history
…2482)

* increase the outbound tracker buffer

* update changelogs
  • Loading branch information
lumtis authored Jul 15, 2024
1 parent 7823f24 commit 7363b33
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,10 @@

* [2321](https://github.com/zeta-chain/node/pull/2321) - improve documentation for ZetaClient functions and packages

### Performance

* [2482](https://github.com/zeta-chain/node/pull/2482) - increase the outbound tracker buffer length from 2 to 5

## v17.0.0

### Fixes
Expand Down
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

0 comments on commit 7363b33

Please sign in to comment.