@aztec/p2p 0.0.1-commit.6230a0c → 0.0.1-commit.64b6bbb
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dest/client/factory.d.ts +5 -5
- package/dest/client/factory.d.ts.map +1 -1
- package/dest/client/factory.js +40 -9
- package/dest/client/interface.d.ts +33 -15
- package/dest/client/interface.d.ts.map +1 -1
- package/dest/client/p2p_client.d.ts +33 -36
- package/dest/client/p2p_client.d.ts.map +1 -1
- package/dest/client/p2p_client.js +104 -139
- package/dest/client/test/tx_proposal_collector/proposal_tx_collector_worker.js +1 -1
- package/dest/config.d.ts +14 -5
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +11 -1
- package/dest/index.d.ts +2 -1
- package/dest/index.d.ts.map +1 -1
- package/dest/index.js +1 -0
- package/dest/mem_pools/attestation_pool/attestation_pool.d.ts +102 -88
- package/dest/mem_pools/attestation_pool/attestation_pool.d.ts.map +1 -1
- package/dest/mem_pools/attestation_pool/attestation_pool.js +436 -3
- package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.d.ts +2 -2
- package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.d.ts.map +1 -1
- package/dest/mem_pools/attestation_pool/attestation_pool_test_suite.js +353 -87
- package/dest/mem_pools/attestation_pool/index.d.ts +2 -3
- package/dest/mem_pools/attestation_pool/index.d.ts.map +1 -1
- package/dest/mem_pools/attestation_pool/index.js +1 -2
- package/dest/mem_pools/index.d.ts +3 -2
- package/dest/mem_pools/index.d.ts.map +1 -1
- package/dest/mem_pools/index.js +1 -1
- package/dest/mem_pools/interface.d.ts +5 -5
- package/dest/mem_pools/interface.d.ts.map +1 -1
- package/dest/mem_pools/tx_pool_v2/archive/index.d.ts +2 -0
- package/dest/mem_pools/tx_pool_v2/archive/index.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/archive/index.js +1 -0
- package/dest/mem_pools/tx_pool_v2/archive/tx_archive.d.ts +43 -0
- package/dest/mem_pools/tx_pool_v2/archive/tx_archive.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/archive/tx_archive.js +103 -0
- package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts +87 -0
- package/dest/mem_pools/tx_pool_v2/deleted_pool.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/deleted_pool.js +180 -0
- package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.d.ts +47 -0
- package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/eviction_manager.js +119 -0
- package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts +17 -0
- package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.js +90 -0
- package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.d.ts +19 -0
- package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.js +89 -0
- package/dest/mem_pools/tx_pool_v2/eviction/index.d.ts +10 -0
- package/dest/mem_pools/tx_pool_v2/eviction/index.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/index.js +11 -0
- package/dest/mem_pools/tx_pool_v2/eviction/interfaces.d.ts +131 -0
- package/dest/mem_pools/tx_pool_v2/eviction/interfaces.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/interfaces.js +17 -0
- package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.d.ts +15 -0
- package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.js +63 -0
- package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.d.ts +17 -0
- package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.js +91 -0
- package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts +16 -0
- package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.js +70 -0
- package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.d.ts +20 -0
- package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.js +63 -0
- package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.d.ts +15 -0
- package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.js +19 -0
- package/dest/mem_pools/tx_pool_v2/index.d.ts +6 -0
- package/dest/mem_pools/tx_pool_v2/index.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/index.js +5 -0
- package/dest/mem_pools/tx_pool_v2/interfaces.d.ts +197 -0
- package/dest/mem_pools/tx_pool_v2/interfaces.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/interfaces.js +6 -0
- package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts +93 -0
- package/dest/mem_pools/tx_pool_v2/tx_metadata.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/tx_metadata.js +127 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_bench_metrics.d.ts +26 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_bench_metrics.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_bench_metrics.js +70 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts +99 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_indices.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_indices.js +332 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts +55 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2.js +156 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts +69 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.d.ts.map +1 -0
- package/dest/mem_pools/tx_pool_v2/tx_pool_v2_impl.js +751 -0
- package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.d.ts +3 -3
- package/dest/msg_validators/attestation_validator/fisherman_attestation_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/aggregate_tx_validator.d.ts +3 -3
- package/dest/msg_validators/tx_validator/aggregate_tx_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/block_header_validator.d.ts +16 -3
- package/dest/msg_validators/tx_validator/block_header_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/block_header_validator.js +1 -1
- package/dest/msg_validators/tx_validator/double_spend_validator.d.ts +13 -3
- package/dest/msg_validators/tx_validator/double_spend_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/double_spend_validator.js +4 -4
- package/dest/msg_validators/tx_validator/timestamp_validator.d.ts +20 -4
- package/dest/msg_validators/tx_validator/timestamp_validator.d.ts.map +1 -1
- package/dest/msg_validators/tx_validator/timestamp_validator.js +2 -2
- package/dest/services/dummy_service.d.ts +10 -2
- package/dest/services/dummy_service.d.ts.map +1 -1
- package/dest/services/dummy_service.js +6 -0
- package/dest/services/encoding.d.ts +2 -2
- package/dest/services/encoding.d.ts.map +1 -1
- package/dest/services/encoding.js +2 -2
- package/dest/services/gossipsub/index.d.ts +3 -0
- package/dest/services/gossipsub/index.d.ts.map +1 -0
- package/dest/services/gossipsub/index.js +2 -0
- package/dest/services/gossipsub/scoring.d.ts +21 -3
- package/dest/services/gossipsub/scoring.d.ts.map +1 -1
- package/dest/services/gossipsub/scoring.js +24 -7
- package/dest/services/gossipsub/topic_score_params.d.ts +161 -0
- package/dest/services/gossipsub/topic_score_params.d.ts.map +1 -0
- package/dest/services/gossipsub/topic_score_params.js +324 -0
- package/dest/services/libp2p/libp2p_service.d.ts +84 -35
- package/dest/services/libp2p/libp2p_service.d.ts.map +1 -1
- package/dest/services/libp2p/libp2p_service.js +368 -273
- package/dest/services/peer-manager/peer_scoring.d.ts +1 -1
- package/dest/services/peer-manager/peer_scoring.d.ts.map +1 -1
- package/dest/services/peer-manager/peer_scoring.js +25 -2
- package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.d.ts +4 -4
- package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.d.ts.map +1 -1
- package/dest/services/reqresp/batch-tx-requester/batch_tx_requester.js +8 -8
- package/dest/services/reqresp/interface.d.ts +10 -1
- package/dest/services/reqresp/interface.d.ts.map +1 -1
- package/dest/services/reqresp/interface.js +15 -1
- package/dest/services/reqresp/protocols/block_txs/block_txs_handler.d.ts +7 -5
- package/dest/services/reqresp/protocols/block_txs/block_txs_handler.d.ts.map +1 -1
- package/dest/services/reqresp/protocols/block_txs/block_txs_handler.js +16 -11
- package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.d.ts +21 -10
- package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.d.ts.map +1 -1
- package/dest/services/reqresp/protocols/block_txs/block_txs_reqresp.js +27 -11
- package/dest/services/reqresp/protocols/tx.d.ts +7 -1
- package/dest/services/reqresp/protocols/tx.d.ts.map +1 -1
- package/dest/services/reqresp/protocols/tx.js +20 -0
- package/dest/services/reqresp/reqresp.d.ts +1 -1
- package/dest/services/reqresp/reqresp.d.ts.map +1 -1
- package/dest/services/reqresp/reqresp.js +11 -4
- package/dest/services/service.d.ts +35 -1
- package/dest/services/service.d.ts.map +1 -1
- package/dest/services/tx_collection/config.d.ts +10 -4
- package/dest/services/tx_collection/config.d.ts.map +1 -1
- package/dest/services/tx_collection/config.js +19 -3
- package/dest/services/tx_collection/fast_tx_collection.d.ts +6 -5
- package/dest/services/tx_collection/fast_tx_collection.d.ts.map +1 -1
- package/dest/services/tx_collection/fast_tx_collection.js +27 -17
- package/dest/services/tx_collection/file_store_tx_collection.d.ts +44 -0
- package/dest/services/tx_collection/file_store_tx_collection.d.ts.map +1 -0
- package/dest/services/tx_collection/file_store_tx_collection.js +118 -0
- package/dest/services/tx_collection/file_store_tx_source.d.ts +27 -0
- package/dest/services/tx_collection/file_store_tx_source.d.ts.map +1 -0
- package/dest/services/tx_collection/file_store_tx_source.js +57 -0
- package/dest/services/tx_collection/index.d.ts +3 -2
- package/dest/services/tx_collection/index.d.ts.map +1 -1
- package/dest/services/tx_collection/index.js +1 -0
- package/dest/services/tx_collection/proposal_tx_collector.d.ts +12 -12
- package/dest/services/tx_collection/proposal_tx_collector.d.ts.map +1 -1
- package/dest/services/tx_collection/proposal_tx_collector.js +4 -5
- package/dest/services/tx_collection/slow_tx_collection.d.ts +3 -1
- package/dest/services/tx_collection/slow_tx_collection.d.ts.map +1 -1
- package/dest/services/tx_collection/slow_tx_collection.js +48 -19
- package/dest/services/tx_collection/tx_collection.d.ts +17 -7
- package/dest/services/tx_collection/tx_collection.d.ts.map +1 -1
- package/dest/services/tx_collection/tx_collection.js +58 -2
- package/dest/services/tx_collection/tx_collection_sink.d.ts +15 -6
- package/dest/services/tx_collection/tx_collection_sink.d.ts.map +1 -1
- package/dest/services/tx_collection/tx_collection_sink.js +13 -7
- package/dest/services/tx_file_store/config.d.ts +1 -3
- package/dest/services/tx_file_store/config.d.ts.map +1 -1
- package/dest/services/tx_file_store/config.js +0 -4
- package/dest/services/tx_file_store/tx_file_store.d.ts +3 -3
- package/dest/services/tx_file_store/tx_file_store.d.ts.map +1 -1
- package/dest/services/tx_provider.d.ts +3 -3
- package/dest/services/tx_provider.d.ts.map +1 -1
- package/dest/services/tx_provider.js +5 -4
- package/dest/test-helpers/make-test-p2p-clients.d.ts +3 -3
- package/dest/test-helpers/make-test-p2p-clients.d.ts.map +1 -1
- package/dest/test-helpers/mock-pubsub.d.ts +27 -1
- package/dest/test-helpers/mock-pubsub.d.ts.map +1 -1
- package/dest/test-helpers/mock-pubsub.js +97 -2
- package/dest/test-helpers/reqresp-nodes.d.ts +1 -1
- package/dest/test-helpers/reqresp-nodes.d.ts.map +1 -1
- package/dest/test-helpers/reqresp-nodes.js +2 -1
- package/dest/test-helpers/testbench-utils.d.ts +38 -38
- package/dest/test-helpers/testbench-utils.d.ts.map +1 -1
- package/dest/test-helpers/testbench-utils.js +124 -61
- package/dest/testbench/p2p_client_testbench_worker.js +2 -2
- package/package.json +14 -14
- package/src/client/factory.ts +68 -12
- package/src/client/interface.ts +39 -14
- package/src/client/p2p_client.ts +139 -162
- package/src/client/test/tx_proposal_collector/proposal_tx_collector_worker.ts +1 -1
- package/src/config.ts +26 -2
- package/src/index.ts +1 -0
- package/src/mem_pools/attestation_pool/attestation_pool.ts +488 -91
- package/src/mem_pools/attestation_pool/attestation_pool_test_suite.ts +442 -102
- package/src/mem_pools/attestation_pool/index.ts +9 -2
- package/src/mem_pools/index.ts +4 -1
- package/src/mem_pools/interface.ts +4 -4
- package/src/mem_pools/tx_pool_v2/README.md +259 -0
- package/src/mem_pools/tx_pool_v2/archive/index.ts +1 -0
- package/src/mem_pools/tx_pool_v2/archive/tx_archive.ts +120 -0
- package/src/mem_pools/tx_pool_v2/deleted_pool.ts +234 -0
- package/src/mem_pools/tx_pool_v2/eviction/eviction_manager.ts +147 -0
- package/src/mem_pools/tx_pool_v2/eviction/fee_payer_balance_eviction_rule.ts +118 -0
- package/src/mem_pools/tx_pool_v2/eviction/fee_payer_balance_pre_add_rule.ts +111 -0
- package/src/mem_pools/tx_pool_v2/eviction/index.ts +23 -0
- package/src/mem_pools/tx_pool_v2/eviction/interfaces.ts +164 -0
- package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_mining_rule.ts +74 -0
- package/src/mem_pools/tx_pool_v2/eviction/invalid_txs_after_reorg_rule.ts +101 -0
- package/src/mem_pools/tx_pool_v2/eviction/low_priority_eviction_rule.ts +86 -0
- package/src/mem_pools/tx_pool_v2/eviction/low_priority_pre_add_rule.ts +72 -0
- package/src/mem_pools/tx_pool_v2/eviction/nullifier_conflict_rule.ts +31 -0
- package/src/mem_pools/tx_pool_v2/index.ts +12 -0
- package/src/mem_pools/tx_pool_v2/interfaces.ts +227 -0
- package/src/mem_pools/tx_pool_v2/tx_metadata.ts +207 -0
- package/src/mem_pools/tx_pool_v2/tx_pool_bench_metrics.ts +77 -0
- package/src/mem_pools/tx_pool_v2/tx_pool_indices.ts +417 -0
- package/src/mem_pools/tx_pool_v2/tx_pool_v2.ts +212 -0
- package/src/mem_pools/tx_pool_v2/tx_pool_v2_impl.ts +895 -0
- package/src/msg_validators/attestation_validator/fisherman_attestation_validator.ts +2 -2
- package/src/msg_validators/tx_validator/aggregate_tx_validator.ts +2 -2
- package/src/msg_validators/tx_validator/block_header_validator.ts +15 -3
- package/src/msg_validators/tx_validator/double_spend_validator.ts +11 -6
- package/src/msg_validators/tx_validator/timestamp_validator.ts +19 -14
- package/src/services/dummy_service.ts +12 -0
- package/src/services/encoding.ts +2 -2
- package/src/services/gossipsub/README.md +626 -0
- package/src/services/gossipsub/index.ts +2 -0
- package/src/services/gossipsub/scoring.ts +29 -5
- package/src/services/gossipsub/topic_score_params.ts +451 -0
- package/src/services/libp2p/libp2p_service.ts +370 -275
- package/src/services/peer-manager/peer_scoring.ts +25 -0
- package/src/services/reqresp/batch-tx-requester/README.md +7 -7
- package/src/services/reqresp/batch-tx-requester/batch_tx_requester.ts +11 -11
- package/src/services/reqresp/interface.ts +26 -1
- package/src/services/reqresp/protocols/block_txs/block_txs_handler.ts +23 -14
- package/src/services/reqresp/protocols/block_txs/block_txs_reqresp.ts +38 -15
- package/src/services/reqresp/protocols/tx.ts +22 -0
- package/src/services/reqresp/reqresp.ts +13 -3
- package/src/services/service.ts +40 -0
- package/src/services/tx_collection/config.ts +32 -6
- package/src/services/tx_collection/fast_tx_collection.ts +28 -26
- package/src/services/tx_collection/file_store_tx_collection.ts +152 -0
- package/src/services/tx_collection/file_store_tx_source.ts +70 -0
- package/src/services/tx_collection/index.ts +2 -1
- package/src/services/tx_collection/proposal_tx_collector.ts +12 -14
- package/src/services/tx_collection/slow_tx_collection.ts +55 -26
- package/src/services/tx_collection/tx_collection.ts +78 -12
- package/src/services/tx_collection/tx_collection_sink.ts +17 -7
- package/src/services/tx_file_store/config.ts +0 -6
- package/src/services/tx_file_store/tx_file_store.ts +4 -4
- package/src/services/tx_provider.ts +8 -7
- package/src/test-helpers/make-test-p2p-clients.ts +3 -3
- package/src/test-helpers/mock-pubsub.ts +133 -3
- package/src/test-helpers/reqresp-nodes.ts +2 -1
- package/src/test-helpers/testbench-utils.ts +122 -74
- package/src/testbench/p2p_client_testbench_worker.ts +2 -2
- package/dest/mem_pools/attestation_pool/kv_attestation_pool.d.ts +0 -40
- package/dest/mem_pools/attestation_pool/kv_attestation_pool.d.ts.map +0 -1
- package/dest/mem_pools/attestation_pool/kv_attestation_pool.js +0 -218
- package/dest/mem_pools/attestation_pool/memory_attestation_pool.d.ts +0 -31
- package/dest/mem_pools/attestation_pool/memory_attestation_pool.d.ts.map +0 -1
- package/dest/mem_pools/attestation_pool/memory_attestation_pool.js +0 -180
- package/src/mem_pools/attestation_pool/kv_attestation_pool.ts +0 -320
- package/src/mem_pools/attestation_pool/memory_attestation_pool.ts +0 -264
|
@@ -2,7 +2,6 @@ import { BlockNumber } from '@aztec/foundation/branded-types';
|
|
|
2
2
|
import { times } from '@aztec/foundation/collection';
|
|
3
3
|
import { AbortError, TimeoutError } from '@aztec/foundation/error';
|
|
4
4
|
import { type Logger, createLogger } from '@aztec/foundation/log';
|
|
5
|
-
import { boundInclusive } from '@aztec/foundation/number';
|
|
6
5
|
import { promiseWithResolvers } from '@aztec/foundation/promise';
|
|
7
6
|
import { sleep } from '@aztec/foundation/sleep';
|
|
8
7
|
import { DateProvider, elapsed } from '@aztec/foundation/timer';
|
|
@@ -14,37 +13,35 @@ import type { PeerId } from '@libp2p/interface';
|
|
|
14
13
|
|
|
15
14
|
import type { BatchTxRequesterConfig } from '../reqresp/batch-tx-requester/config.js';
|
|
16
15
|
import type { BatchTxRequesterLibP2PService } from '../reqresp/batch-tx-requester/interface.js';
|
|
17
|
-
import { ReqRespSubProtocol } from '../reqresp/interface.js';
|
|
18
|
-
import { chunkTxHashesRequest } from '../reqresp/protocols/tx.js';
|
|
19
16
|
import type { TxCollectionConfig } from './config.js';
|
|
20
17
|
import {
|
|
21
18
|
BatchTxRequesterCollector,
|
|
22
|
-
type
|
|
19
|
+
type MissingTxsCollector,
|
|
23
20
|
SendBatchRequestCollector,
|
|
24
21
|
} from './proposal_tx_collector.js';
|
|
25
22
|
import type { FastCollectionRequest, FastCollectionRequestInput } from './tx_collection.js';
|
|
26
|
-
import type { TxCollectionSink } from './tx_collection_sink.js';
|
|
23
|
+
import type { TxAddContext, TxCollectionSink } from './tx_collection_sink.js';
|
|
27
24
|
import type { TxSource } from './tx_source.js';
|
|
28
25
|
|
|
29
26
|
export class FastTxCollection {
|
|
30
27
|
// eslint-disable-next-line aztec-custom/no-non-primitive-in-collections
|
|
31
28
|
protected requests: Set<FastCollectionRequest> = new Set();
|
|
32
|
-
private
|
|
29
|
+
private missingTxsCollector: MissingTxsCollector;
|
|
33
30
|
|
|
34
31
|
constructor(
|
|
35
|
-
|
|
32
|
+
p2pService: BatchTxRequesterLibP2PService,
|
|
36
33
|
private nodes: TxSource[],
|
|
37
34
|
private txCollectionSink: TxCollectionSink,
|
|
38
35
|
private config: TxCollectionConfig,
|
|
39
36
|
private dateProvider: DateProvider = new DateProvider(),
|
|
40
37
|
private log: Logger = createLogger('p2p:tx_collection_service'),
|
|
41
|
-
|
|
38
|
+
missingTxsCollector?: MissingTxsCollector,
|
|
42
39
|
) {
|
|
43
40
|
const batchTxRequesterConfig = this.config as Partial<BatchTxRequesterConfig>;
|
|
44
|
-
const
|
|
45
|
-
this.
|
|
46
|
-
|
|
47
|
-
(
|
|
41
|
+
const missingTxsCollectorType = this.config.txCollectionMissingTxsCollectorType;
|
|
42
|
+
this.missingTxsCollector =
|
|
43
|
+
missingTxsCollector ??
|
|
44
|
+
(missingTxsCollectorType === 'old'
|
|
48
45
|
? new SendBatchRequestCollector(p2pService)
|
|
49
46
|
: new BatchTxRequesterCollector(p2pService, log, dateProvider, undefined, batchTxRequesterConfig));
|
|
50
47
|
}
|
|
@@ -80,7 +77,7 @@ export class FastTxCollection {
|
|
|
80
77
|
// This promise is used to await for the collection to finish during the main collectFast method.
|
|
81
78
|
// It gets resolved in `foundTxs` when all txs have been collected, or rejected if the request is aborted or hits the deadline.
|
|
82
79
|
const promise = promiseWithResolvers<void>();
|
|
83
|
-
setTimeout(() => promise.reject(new TimeoutError(`Timed out while collecting txs`)), timeout);
|
|
80
|
+
const timeoutTimer = setTimeout(() => promise.reject(new TimeoutError(`Timed out while collecting txs`)), timeout);
|
|
84
81
|
|
|
85
82
|
const request: FastCollectionRequest = {
|
|
86
83
|
...input,
|
|
@@ -92,6 +89,7 @@ export class FastTxCollection {
|
|
|
92
89
|
};
|
|
93
90
|
|
|
94
91
|
const [duration] = await elapsed(() => this.collectFast(request, { ...opts }));
|
|
92
|
+
clearTimeout(timeoutTimer);
|
|
95
93
|
|
|
96
94
|
this.log.verbose(
|
|
97
95
|
`Collected ${request.foundTxs.size} txs out of ${txHashes.length} for ${input.type} at slot ${blockInfo.slotNumber}`,
|
|
@@ -237,6 +235,7 @@ export class FastTxCollection {
|
|
|
237
235
|
method: 'fast-node-rpc',
|
|
238
236
|
...request.blockInfo,
|
|
239
237
|
},
|
|
238
|
+
this.getAddContext(request),
|
|
240
239
|
);
|
|
241
240
|
|
|
242
241
|
// Clear from the active requests the txs we just requested
|
|
@@ -258,8 +257,6 @@ export class FastTxCollection {
|
|
|
258
257
|
private async collectFastViaReqResp(request: FastCollectionRequest, opts: { pinnedPeer?: PeerId }) {
|
|
259
258
|
const timeoutMs = +request.deadline - this.dateProvider.now();
|
|
260
259
|
const pinnedPeer = opts.pinnedPeer;
|
|
261
|
-
const maxPeers = boundInclusive(Math.ceil(request.missingTxHashes.size / 2), 8, 32);
|
|
262
|
-
const maxRetryAttempts = 5;
|
|
263
260
|
const blockInfo = request.blockInfo;
|
|
264
261
|
const slotNumber = blockInfo.slotNumber;
|
|
265
262
|
if (timeoutMs < 100) {
|
|
@@ -279,24 +276,20 @@ export class FastTxCollection {
|
|
|
279
276
|
await this.txCollectionSink.collect(
|
|
280
277
|
async txHashes => {
|
|
281
278
|
if (request.type === 'proposal') {
|
|
282
|
-
return await this.
|
|
279
|
+
return await this.missingTxsCollector.collectTxs(txHashes, request.blockProposal, pinnedPeer, timeoutMs);
|
|
283
280
|
} else if (request.type === 'block') {
|
|
284
|
-
const
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
maxPeers,
|
|
290
|
-
maxRetryAttempts,
|
|
291
|
-
);
|
|
292
|
-
|
|
293
|
-
return txs.flat();
|
|
281
|
+
const blockTxsSource = {
|
|
282
|
+
txHashes: request.block.body.txEffects.map(e => e.txHash),
|
|
283
|
+
archive: request.block.archive.root,
|
|
284
|
+
};
|
|
285
|
+
return await this.missingTxsCollector.collectTxs(txHashes, blockTxsSource, pinnedPeer, timeoutMs);
|
|
294
286
|
} else {
|
|
295
287
|
throw new Error(`Unknown request type: ${(request as any).type}`);
|
|
296
288
|
}
|
|
297
289
|
},
|
|
298
290
|
Array.from(request.missingTxHashes).map(txHash => TxHash.fromString(txHash)),
|
|
299
291
|
{ description: `reqresp for slot ${slotNumber}`, method: 'fast-req-resp', ...opts, ...request.blockInfo },
|
|
292
|
+
this.getAddContext(request),
|
|
300
293
|
);
|
|
301
294
|
} catch (err) {
|
|
302
295
|
this.log.error(`Error sending fast reqresp request for txs`, err, {
|
|
@@ -306,6 +299,15 @@ export class FastTxCollection {
|
|
|
306
299
|
}
|
|
307
300
|
}
|
|
308
301
|
|
|
302
|
+
/** Returns the TxAddContext for the given request, used by the sink to add txs to the pool correctly. */
|
|
303
|
+
private getAddContext(request: FastCollectionRequest): TxAddContext {
|
|
304
|
+
if (request.type === 'proposal') {
|
|
305
|
+
return { type: 'proposal', blockHeader: request.blockProposal.blockHeader };
|
|
306
|
+
} else {
|
|
307
|
+
return { type: 'mined', block: request.block };
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
|
|
309
311
|
/**
|
|
310
312
|
* Handle txs by marking them as found for the requests that are waiting for them, and resolves the request if all its txs have been found.
|
|
311
313
|
* Called internally and from the main tx collection manager whenever the tx pool emits a tx-added event.
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
import { type Logger, createLogger } from '@aztec/foundation/log';
|
|
2
|
+
import { FifoMemoryQueue } from '@aztec/foundation/queue';
|
|
3
|
+
import { Tx, TxHash } from '@aztec/stdlib/tx';
|
|
4
|
+
|
|
5
|
+
import type { FileStoreTxSource } from './file_store_tx_source.js';
|
|
6
|
+
import type { TxAddContext, TxCollectionSink } from './tx_collection_sink.js';
|
|
7
|
+
|
|
8
|
+
// Internal constants (not configurable by node operators)
|
|
9
|
+
const FILE_STORE_DOWNLOAD_CONCURRENCY = 5; // Max concurrent downloads
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Collects txs from file stores as a fallback after P2P methods have been tried.
|
|
13
|
+
* Runs in parallel to slow/fast collection. The delay before starting file store
|
|
14
|
+
* collection is managed by the TxCollection orchestrator, not this class.
|
|
15
|
+
*/
|
|
16
|
+
export class FileStoreTxCollection {
|
|
17
|
+
/** Map from tx hash to add context for txs queued for download. */
|
|
18
|
+
private pendingTxs = new Map<string, TxAddContext>();
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Tracks tx hashes found elsewhere, even before startCollecting is called.
|
|
22
|
+
* Needed because the orchestrator delays startCollecting via a real sleep, but foundTxs
|
|
23
|
+
* may arrive during that delay — before the hashes are added to pendingTxs.
|
|
24
|
+
*/
|
|
25
|
+
private foundTxHashes = new Set<string>();
|
|
26
|
+
|
|
27
|
+
/** Queue of tx hashes to be downloaded. */
|
|
28
|
+
private downloadQueue = new FifoMemoryQueue<TxHash>();
|
|
29
|
+
|
|
30
|
+
/** Worker promises for concurrent downloads. */
|
|
31
|
+
private workers: Promise<void>[] = [];
|
|
32
|
+
|
|
33
|
+
/** Whether the collection has been started. */
|
|
34
|
+
private started = false;
|
|
35
|
+
|
|
36
|
+
constructor(
|
|
37
|
+
private readonly fileStoreSources: FileStoreTxSource[],
|
|
38
|
+
private readonly txCollectionSink: TxCollectionSink,
|
|
39
|
+
private readonly log: Logger = createLogger('p2p:file_store_tx_collection'),
|
|
40
|
+
) {}
|
|
41
|
+
|
|
42
|
+
/** Starts the file store collection workers. */
|
|
43
|
+
public start() {
|
|
44
|
+
if (this.fileStoreSources.length === 0) {
|
|
45
|
+
this.log.debug('No file store sources configured, skipping file store collection');
|
|
46
|
+
return;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
this.started = true;
|
|
50
|
+
this.downloadQueue = new FifoMemoryQueue<TxHash>();
|
|
51
|
+
|
|
52
|
+
// Start concurrent download workers
|
|
53
|
+
for (let i = 0; i < FILE_STORE_DOWNLOAD_CONCURRENCY; i++) {
|
|
54
|
+
this.workers.push(this.downloadQueue.process(txHash => this.processDownload(txHash)));
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
this.log.info(`Started file store tx collection with ${this.fileStoreSources.length} sources`, {
|
|
58
|
+
sources: this.fileStoreSources.map(s => s.getInfo()),
|
|
59
|
+
concurrency: FILE_STORE_DOWNLOAD_CONCURRENCY,
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/** Stops all collection activity. */
|
|
64
|
+
public async stop() {
|
|
65
|
+
if (!this.started) {
|
|
66
|
+
return;
|
|
67
|
+
}
|
|
68
|
+
this.started = false;
|
|
69
|
+
this.downloadQueue.end();
|
|
70
|
+
await Promise.all(this.workers);
|
|
71
|
+
this.workers = [];
|
|
72
|
+
this.pendingTxs.clear();
|
|
73
|
+
this.foundTxHashes.clear();
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/** Remove the given tx hashes from pending. */
|
|
77
|
+
public stopCollecting(txHashes: TxHash[]) {
|
|
78
|
+
for (const txHash of txHashes) {
|
|
79
|
+
const hashStr = txHash.toString();
|
|
80
|
+
this.pendingTxs.delete(hashStr);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/** Clears all pending state. Items already in the download queue will still be processed but won't be re-queued. */
|
|
85
|
+
public clearPending() {
|
|
86
|
+
this.pendingTxs.clear();
|
|
87
|
+
this.foundTxHashes.clear();
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
/** Queue the given tx hashes for file store collection. */
|
|
91
|
+
public startCollecting(txHashes: TxHash[], context: TxAddContext) {
|
|
92
|
+
for (const txHash of txHashes) {
|
|
93
|
+
const hashStr = txHash.toString();
|
|
94
|
+
if (!this.pendingTxs.has(hashStr) && !this.foundTxHashes.has(hashStr)) {
|
|
95
|
+
this.pendingTxs.set(hashStr, context);
|
|
96
|
+
this.downloadQueue.put(txHash);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
/** Stop tracking txs that were found elsewhere. */
|
|
102
|
+
public foundTxs(txs: Tx[]) {
|
|
103
|
+
for (const tx of txs) {
|
|
104
|
+
const hashStr = tx.getTxHash().toString();
|
|
105
|
+
this.pendingTxs.delete(hashStr);
|
|
106
|
+
this.foundTxHashes.add(hashStr);
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/** Processes a single tx hash from the download queue. */
|
|
111
|
+
private async processDownload(txHash: TxHash) {
|
|
112
|
+
const hashStr = txHash.toString();
|
|
113
|
+
const context = this.pendingTxs.get(hashStr);
|
|
114
|
+
|
|
115
|
+
// Skip if already found by another method
|
|
116
|
+
if (!context) {
|
|
117
|
+
return;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
await this.downloadTx(txHash, context);
|
|
121
|
+
this.pendingTxs.delete(hashStr);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/** Attempt to download a tx from file stores (round-robin). */
|
|
125
|
+
private async downloadTx(txHash: TxHash, context: TxAddContext) {
|
|
126
|
+
const startIndex = Math.floor(Math.random() * this.fileStoreSources.length);
|
|
127
|
+
for (let i = startIndex; i < startIndex + this.fileStoreSources.length; i++) {
|
|
128
|
+
const source = this.fileStoreSources[i % this.fileStoreSources.length];
|
|
129
|
+
|
|
130
|
+
try {
|
|
131
|
+
const result = await this.txCollectionSink.collect(
|
|
132
|
+
hashes => source.getTxsByHash(hashes),
|
|
133
|
+
[txHash],
|
|
134
|
+
{
|
|
135
|
+
description: `file-store ${source.getInfo()}`,
|
|
136
|
+
method: 'file-store',
|
|
137
|
+
fileStore: source.getInfo(),
|
|
138
|
+
},
|
|
139
|
+
context,
|
|
140
|
+
);
|
|
141
|
+
|
|
142
|
+
if (result.txs.length > 0) {
|
|
143
|
+
return;
|
|
144
|
+
}
|
|
145
|
+
} catch (err) {
|
|
146
|
+
this.log.trace(`Failed to download tx ${txHash} from ${source.getInfo()}`, { err });
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
this.log.trace(`Tx ${txHash} not found in any file store`);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { type Logger, createLogger } from '@aztec/foundation/log';
|
|
2
|
+
import { type ReadOnlyFileStore, createReadOnlyFileStore } from '@aztec/stdlib/file-store';
|
|
3
|
+
import { Tx, type TxHash } from '@aztec/stdlib/tx';
|
|
4
|
+
|
|
5
|
+
import type { TxSource } from './tx_source.js';
|
|
6
|
+
|
|
7
|
+
/** TxSource implementation that downloads txs from a file store. */
|
|
8
|
+
export class FileStoreTxSource implements TxSource {
|
|
9
|
+
private constructor(
|
|
10
|
+
private readonly fileStore: ReadOnlyFileStore,
|
|
11
|
+
private readonly baseUrl: string,
|
|
12
|
+
private readonly log: Logger,
|
|
13
|
+
) {}
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Creates a FileStoreTxSource from a URL.
|
|
17
|
+
* @param url - The file store URL (s3://, gs://, file://, http://, https://).
|
|
18
|
+
* @param log - Optional logger.
|
|
19
|
+
* @returns The FileStoreTxSource instance, or undefined if creation fails.
|
|
20
|
+
*/
|
|
21
|
+
public static async create(
|
|
22
|
+
url: string,
|
|
23
|
+
log: Logger = createLogger('p2p:file_store_tx_source'),
|
|
24
|
+
): Promise<FileStoreTxSource | undefined> {
|
|
25
|
+
try {
|
|
26
|
+
const fileStore = await createReadOnlyFileStore(url, log);
|
|
27
|
+
if (!fileStore) {
|
|
28
|
+
log.warn(`Failed to create file store for URL: ${url}`);
|
|
29
|
+
return undefined;
|
|
30
|
+
}
|
|
31
|
+
return new FileStoreTxSource(fileStore, url, log);
|
|
32
|
+
} catch (err) {
|
|
33
|
+
log.warn(`Error creating file store for URL: ${url}`, { error: err });
|
|
34
|
+
return undefined;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
public getInfo(): string {
|
|
39
|
+
return `file-store:${this.baseUrl}`;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
public getTxsByHash(txHashes: TxHash[]): Promise<(Tx | undefined)[]> {
|
|
43
|
+
return Promise.all(
|
|
44
|
+
txHashes.map(async txHash => {
|
|
45
|
+
const path = `txs/${txHash.toString()}.bin`;
|
|
46
|
+
try {
|
|
47
|
+
const buffer = await this.fileStore.read(path);
|
|
48
|
+
return Tx.fromBuffer(buffer);
|
|
49
|
+
} catch {
|
|
50
|
+
// Tx not found or error reading - return undefined
|
|
51
|
+
return undefined;
|
|
52
|
+
}
|
|
53
|
+
}),
|
|
54
|
+
);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* Creates FileStoreTxSource instances from URLs.
|
|
60
|
+
* @param urls - Array of file store URLs.
|
|
61
|
+
* @param log - Optional logger.
|
|
62
|
+
* @returns Array of successfully created FileStoreTxSource instances.
|
|
63
|
+
*/
|
|
64
|
+
export async function createFileStoreTxSources(
|
|
65
|
+
urls: string[],
|
|
66
|
+
log: Logger = createLogger('p2p:file_store_tx_source'),
|
|
67
|
+
): Promise<FileStoreTxSource[]> {
|
|
68
|
+
const sources = await Promise.all(urls.map(url => FileStoreTxSource.create(url, log)));
|
|
69
|
+
return sources.filter((s): s is FileStoreTxSource => s !== undefined);
|
|
70
|
+
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
export { TxCollection, type FastCollectionRequestInput } from './tx_collection.js';
|
|
2
2
|
export { type TxSource, createNodeRpcTxSources, NodeRpcTxSource } from './tx_source.js';
|
|
3
3
|
export {
|
|
4
|
-
type
|
|
4
|
+
type MissingTxsCollector,
|
|
5
5
|
BatchTxRequesterCollector,
|
|
6
6
|
SendBatchRequestCollector,
|
|
7
7
|
} from './proposal_tx_collector.js';
|
|
8
|
+
export { FileStoreTxSource, createFileStoreTxSources } from './file_store_tx_source.js';
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { Logger } from '@aztec/foundation/log';
|
|
2
2
|
import type { DateProvider } from '@aztec/foundation/timer';
|
|
3
|
-
import type { BlockProposal } from '@aztec/stdlib/p2p';
|
|
4
3
|
import type { Tx, TxHash } from '@aztec/stdlib/tx';
|
|
5
4
|
|
|
6
5
|
import type { PeerId } from '@libp2p/interface';
|
|
@@ -9,25 +8,24 @@ import { BatchTxRequester } from '../reqresp/batch-tx-requester/batch_tx_request
|
|
|
9
8
|
import type { BatchTxRequesterConfig } from '../reqresp/batch-tx-requester/config.js';
|
|
10
9
|
import type { BatchTxRequesterLibP2PService } from '../reqresp/batch-tx-requester/interface.js';
|
|
11
10
|
import type { IBatchRequestTxValidator } from '../reqresp/batch-tx-requester/tx_validator.js';
|
|
12
|
-
import { ReqRespSubProtocol } from '../reqresp/
|
|
13
|
-
import { chunkTxHashesRequest } from '../reqresp/protocols/tx.js';
|
|
11
|
+
import { type BlockTxsSource, ReqRespSubProtocol, chunkTxHashesRequest } from '../reqresp/index.js';
|
|
14
12
|
|
|
15
13
|
/**
|
|
16
|
-
* Strategy interface for collecting transactions for block
|
|
14
|
+
* Strategy interface for collecting missing transactions for a block or proposal.
|
|
17
15
|
* Allows swapping between different tx collection implementations for benchmarking.
|
|
18
16
|
*/
|
|
19
|
-
export interface
|
|
17
|
+
export interface MissingTxsCollector {
|
|
20
18
|
/**
|
|
21
|
-
* Collect transactions for a block proposal.
|
|
19
|
+
* Collect missing transactions for a block or proposal.
|
|
22
20
|
* @param txHashes - The transaction hashes to collect
|
|
23
|
-
* @param
|
|
24
|
-
* @param pinnedPeer - Optional peer
|
|
21
|
+
* @param blockTxsSource - The block or proposal containing the transactions
|
|
22
|
+
* @param pinnedPeer - Optional peer expected to have the transactions
|
|
25
23
|
* @param timeoutMs - Timeout in milliseconds
|
|
26
24
|
* @returns The collected transactions
|
|
27
25
|
*/
|
|
28
26
|
collectTxs(
|
|
29
27
|
txHashes: TxHash[],
|
|
30
|
-
|
|
28
|
+
blockTxsSource: BlockTxsSource,
|
|
31
29
|
pinnedPeer: PeerId | undefined,
|
|
32
30
|
timeoutMs: number,
|
|
33
31
|
): Promise<Tx[]>;
|
|
@@ -37,7 +35,7 @@ export interface ProposalTxCollector {
|
|
|
37
35
|
* Collects transactions using the BatchTxRequester implementation.
|
|
38
36
|
* This uses a smart/dumb peer strategy with parallel workers.
|
|
39
37
|
*/
|
|
40
|
-
export class BatchTxRequesterCollector implements
|
|
38
|
+
export class BatchTxRequesterCollector implements MissingTxsCollector {
|
|
41
39
|
constructor(
|
|
42
40
|
private p2pService: BatchTxRequesterLibP2PService,
|
|
43
41
|
private log: Logger,
|
|
@@ -48,7 +46,7 @@ export class BatchTxRequesterCollector implements ProposalTxCollector {
|
|
|
48
46
|
|
|
49
47
|
async collectTxs(
|
|
50
48
|
txHashes: TxHash[],
|
|
51
|
-
|
|
49
|
+
blockTxsSource: BlockTxsSource,
|
|
52
50
|
pinnedPeer: PeerId | undefined,
|
|
53
51
|
timeoutMs: number,
|
|
54
52
|
): Promise<Tx[]> {
|
|
@@ -61,7 +59,7 @@ export class BatchTxRequesterCollector implements ProposalTxCollector {
|
|
|
61
59
|
|
|
62
60
|
const batchRequester = new BatchTxRequester(
|
|
63
61
|
txHashes,
|
|
64
|
-
|
|
62
|
+
blockTxsSource,
|
|
65
63
|
pinnedPeer,
|
|
66
64
|
timeoutMs,
|
|
67
65
|
this.p2pService,
|
|
@@ -87,7 +85,7 @@ const DEFAULT_MAX_RETRY_ATTEMPTS = 3;
|
|
|
87
85
|
* Collects transactions using the sendBatchRequest implementation from ReqResp.
|
|
88
86
|
* This is the original implementation that balances requests across peers.
|
|
89
87
|
*/
|
|
90
|
-
export class SendBatchRequestCollector implements
|
|
88
|
+
export class SendBatchRequestCollector implements MissingTxsCollector {
|
|
91
89
|
constructor(
|
|
92
90
|
private p2pService: BatchTxRequesterLibP2PService,
|
|
93
91
|
private maxPeers: number = DEFAULT_MAX_PEERS,
|
|
@@ -96,7 +94,7 @@ export class SendBatchRequestCollector implements ProposalTxCollector {
|
|
|
96
94
|
|
|
97
95
|
async collectTxs(
|
|
98
96
|
txHashes: TxHash[],
|
|
99
|
-
|
|
97
|
+
_blockTxsSource: BlockTxsSource,
|
|
100
98
|
pinnedPeer: PeerId | undefined,
|
|
101
99
|
timeoutMs: number,
|
|
102
100
|
): Promise<Tx[]> {
|
|
@@ -91,6 +91,7 @@ export class SlowTxCollection {
|
|
|
91
91
|
|
|
92
92
|
for (const txHash of txHashes) {
|
|
93
93
|
this.missingTxs.set(txHash.toString(), {
|
|
94
|
+
block,
|
|
94
95
|
blockNumber: block.number,
|
|
95
96
|
deadline: this.getDeadlineForSlot(block.header.getSlot()),
|
|
96
97
|
readyForReqResp: this.nodes.length === 0, // If we have no nodes, we can start reqresp immediately
|
|
@@ -109,18 +110,26 @@ export class SlowTxCollection {
|
|
|
109
110
|
|
|
110
111
|
// Gather all missing txs that are not in fast collection and request them from the node
|
|
111
112
|
const missingTxs = this.getMissingTxsForSlowCollection();
|
|
112
|
-
|
|
113
|
-
if (missingTxHashes.length === 0) {
|
|
113
|
+
if (missingTxs.length === 0) {
|
|
114
114
|
return;
|
|
115
115
|
}
|
|
116
116
|
|
|
117
|
-
//
|
|
118
|
-
for (const
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
117
|
+
// Group by block so we pass the correct mined context to the sink
|
|
118
|
+
for (const entries of this.groupByBlock(missingTxs)) {
|
|
119
|
+
const block = entries[0][1].block;
|
|
120
|
+
const txHashes = entries.map(([txHash]) => TxHash.fromString(txHash));
|
|
121
|
+
for (const batch of chunk(txHashes, this.config.txCollectionNodeRpcMaxBatchSize)) {
|
|
122
|
+
await this.txCollectionSink.collect(
|
|
123
|
+
hashes => node.getTxsByHash(hashes),
|
|
124
|
+
batch,
|
|
125
|
+
{
|
|
126
|
+
description: `node ${node.getInfo()}`,
|
|
127
|
+
node: node.getInfo(),
|
|
128
|
+
method: 'slow-node-rpc',
|
|
129
|
+
},
|
|
130
|
+
{ type: 'mined', block },
|
|
131
|
+
);
|
|
132
|
+
}
|
|
124
133
|
}
|
|
125
134
|
|
|
126
135
|
// Mark every tx that is still missing as ready for reqresp.
|
|
@@ -149,25 +158,30 @@ export class SlowTxCollection {
|
|
|
149
158
|
|
|
150
159
|
const pinnedPeer = undefined;
|
|
151
160
|
const timeoutMs = this.config.txCollectionSlowReqRespTimeoutMs;
|
|
152
|
-
const maxPeers = boundInclusive(Math.ceil(missingTxs.length / 3), 4, 16);
|
|
153
161
|
const maxRetryAttempts = 3;
|
|
154
|
-
// Send a batch request via reqresp for the missing txs
|
|
155
|
-
await this.txCollectionSink.collect(
|
|
156
|
-
async txHashes => {
|
|
157
|
-
const txs = await this.reqResp.sendBatchRequest<ReqRespSubProtocol.TX>(
|
|
158
|
-
ReqRespSubProtocol.TX,
|
|
159
|
-
chunkTxHashesRequest(txHashes),
|
|
160
|
-
pinnedPeer,
|
|
161
|
-
timeoutMs,
|
|
162
|
-
maxPeers,
|
|
163
|
-
maxRetryAttempts,
|
|
164
|
-
);
|
|
165
162
|
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
163
|
+
// Group by block so we pass the correct mined context to the sink
|
|
164
|
+
for (const entries of this.groupByBlock(missingTxs)) {
|
|
165
|
+
const block = entries[0][1].block;
|
|
166
|
+
const txHashes = entries.map(([txHash]) => TxHash.fromString(txHash));
|
|
167
|
+
const maxPeers = boundInclusive(Math.ceil(txHashes.length / 3), 4, 16);
|
|
168
|
+
await this.txCollectionSink.collect(
|
|
169
|
+
async hashes => {
|
|
170
|
+
const txs = await this.reqResp.sendBatchRequest<ReqRespSubProtocol.TX>(
|
|
171
|
+
ReqRespSubProtocol.TX,
|
|
172
|
+
chunkTxHashesRequest(hashes),
|
|
173
|
+
pinnedPeer,
|
|
174
|
+
timeoutMs,
|
|
175
|
+
maxPeers,
|
|
176
|
+
maxRetryAttempts,
|
|
177
|
+
);
|
|
178
|
+
return txs.flat();
|
|
179
|
+
},
|
|
180
|
+
txHashes,
|
|
181
|
+
{ description: 'slow reqresp', timeoutMs, method: 'slow-req-resp' },
|
|
182
|
+
{ type: 'mined', block },
|
|
183
|
+
);
|
|
184
|
+
}
|
|
171
185
|
}
|
|
172
186
|
|
|
173
187
|
/** Retrieves all missing txs for the slow collection process. This is, all missing txs that are not part of a fast request. */
|
|
@@ -223,6 +237,21 @@ export class SlowTxCollection {
|
|
|
223
237
|
}
|
|
224
238
|
}
|
|
225
239
|
|
|
240
|
+
/** Groups missing tx entries by block number. */
|
|
241
|
+
private groupByBlock(entries: [string, MissingTxInfo][]): [string, MissingTxInfo][][] {
|
|
242
|
+
const groups = new Map<number, [string, MissingTxInfo][]>();
|
|
243
|
+
for (const entry of entries) {
|
|
244
|
+
const bn = +entry[1].blockNumber;
|
|
245
|
+
let group = groups.get(bn);
|
|
246
|
+
if (!group) {
|
|
247
|
+
group = [];
|
|
248
|
+
groups.set(bn, group);
|
|
249
|
+
}
|
|
250
|
+
group.push(entry);
|
|
251
|
+
}
|
|
252
|
+
return [...groups.values()];
|
|
253
|
+
}
|
|
254
|
+
|
|
226
255
|
/** Computes the proof submission deadline for a given slot, a tx mined in this slot is no longer interesting after this deadline */
|
|
227
256
|
private getDeadlineForSlot(slotNumber: SlotNumber): Date {
|
|
228
257
|
const epoch = getEpochAtSlot(slotNumber, this.constants);
|