From 4fbe176740c73dbeee85a5209659ec6fa09f2555 Mon Sep 17 00:00:00 2001 From: lumtis Date: Mon, 15 Jul 2024 14:07:19 +0200 Subject: [PATCH 1/2] increase the outbound tracker buffer --- x/crosschain/keeper/msg_server_add_outbound_tracker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/crosschain/keeper/msg_server_add_outbound_tracker.go b/x/crosschain/keeper/msg_server_add_outbound_tracker.go index 5a3c98e9e9..2bfb63d8ab 100644 --- a/x/crosschain/keeper/msg_server_add_outbound_tracker.go +++ b/x/crosschain/keeper/msg_server_add_outbound_tracker.go @@ -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. From f2f9e3981a69b5189e942af972e484795e4f98cd Mon Sep 17 00:00:00 2001 From: lumtis Date: Mon, 15 Jul 2024 14:11:08 +0200 Subject: [PATCH 2/2] update changelogs --- changelog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/changelog.md b/changelog.md index 7921ca10de..99650b6553 100644 --- a/changelog.md +++ b/changelog.md @@ -114,6 +114,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