From 410eb09f8fe67a6da204313527d2f3615c5667ce Mon Sep 17 00:00:00 2001 From: QuantumExplorer Date: Thu, 16 Jan 2025 06:31:26 +0700 Subject: [PATCH] fix(drive-abci): rebroadcasting should not only take first 2 quorums too (#2425) --- .../drive_abci_versions/drive_abci_method_versions/v5.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/rs-platform-version/src/version/drive_abci_versions/drive_abci_method_versions/v5.rs b/packages/rs-platform-version/src/version/drive_abci_versions/drive_abci_method_versions/v5.rs index 19303e4347..8b9e7b1eae 100644 --- a/packages/rs-platform-version/src/version/drive_abci_versions/drive_abci_method_versions/v5.rs +++ b/packages/rs-platform-version/src/version/drive_abci_versions/drive_abci_method_versions/v5.rs @@ -84,7 +84,8 @@ pub const DRIVE_ABCI_METHOD_VERSIONS_V5: DriveAbciMethodVersions = DriveAbciMeth // quorums as workaround for Core v21 bug. pool_withdrawals_into_transactions_queue: 1, update_broadcasted_withdrawal_statuses: 0, - rebroadcast_expired_withdrawal_documents: 0, + // Rebroadcasting should also no longer use the first two quorums only + rebroadcast_expired_withdrawal_documents: 1, append_signatures_and_broadcast_withdrawal_transactions: 0, cleanup_expired_locks_of_withdrawal_amounts: 0, },