Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6ffde65

Browse files
committedJan 15, 2025··
assumeState and catchup tests for Hot Archive BucketList
1 parent 05be852 commit 6ffde65

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1977
-948
lines changed
 

‎src/Makefile.am

+2-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ TEST_FILES = $(TESTDATA_DIR)/stellar-core_example.cfg $(TESTDATA_DIR)/stellar-co
8181
$(TESTDATA_DIR)/stellar-core_testnet.cfg $(TESTDATA_DIR)/stellar-core_testnet_legacy.cfg \
8282
$(TESTDATA_DIR)/stellar-history.testnet.6714239.json $(TESTDATA_DIR)/stellar-history.livenet.15686975.json \
8383
$(TESTDATA_DIR)/stellar-core_testnet_validator.cfg $(TESTDATA_DIR)/stellar-core_example_validators.cfg \
84-
$(TESTDATA_DIR)/stellar-history.testnet.6714239.networkPassphrase.json
84+
$(TESTDATA_DIR)/stellar-history.testnet.6714239.networkPassphrase.json \
85+
$(TESTDATA_DIR)/stellar-history.testnet.6714239.networkPassphrase.v2.json
8586

8687
BUILT_SOURCES = $(SRC_X_FILES:.x=.h) main/StellarCoreVersion.cpp main/XDRFilesSha256.cpp $(TEST_FILES)
8788

‎src/bucket/BucketBase.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ BucketBase::merge(BucketManager& bucketManager, uint32_t maxProtocolVersion,
385385
}
386386
if (countMergeEvents)
387387
{
388-
bucketManager.incrMergeCounters(mc);
388+
bucketManager.incrMergeCounters<BucketT>(mc);
389389
}
390390

391391
std::vector<Hash> shadowHashes;

0 commit comments

Comments
 (0)
Please sign in to comment.