fix: Increase MaxBatchConfirmStorageRequests from 10 to 100 (#400)

- Increase `MaxBatchConfirmStorageRequests` runtime constant from 10 to
100
- Applied across all runtime environments: mainnet, stagenet, and
testnet
- [x] Verify builds pass for all runtime configurations

(cherry picked from commit db4608f9dd)
This commit is contained in:
Ahmad Kaouk 2026-01-19 19:41:12 +01:00 committed by Steve Degosserie
parent 50f61fb945
commit 2c2546d36f
No known key found for this signature in database
GPG key ID: 2F23F0D52ABF408E
3 changed files with 3 additions and 3 deletions

View file

@ -502,7 +502,7 @@ impl pallet_file_system::Config for Runtime {
type CollectionInspector = BucketNfts;
type BspStopStoringFilePenalty = runtime_config::BspStopStoringFilePenalty;
type TreasuryAccount = TreasuryAccount;
type MaxBatchConfirmStorageRequests = ConstU32<10>;
type MaxBatchConfirmStorageRequests = ConstU32<100>;
type MaxFilePathSize = ConstU32<512u32>;
type MaxPeerIdSize = ConstU32<100>;
type MaxNumberOfPeerIds = ConstU32<5>;

View file

@ -502,7 +502,7 @@ impl pallet_file_system::Config for Runtime {
type CollectionInspector = BucketNfts;
type BspStopStoringFilePenalty = runtime_config::BspStopStoringFilePenalty;
type TreasuryAccount = TreasuryAccount;
type MaxBatchConfirmStorageRequests = ConstU32<10>;
type MaxBatchConfirmStorageRequests = ConstU32<100>;
type MaxFilePathSize = ConstU32<512u32>;
type MaxPeerIdSize = ConstU32<100>;
type MaxNumberOfPeerIds = ConstU32<5>;

View file

@ -502,7 +502,7 @@ impl pallet_file_system::Config for Runtime {
type CollectionInspector = BucketNfts;
type BspStopStoringFilePenalty = runtime_config::BspStopStoringFilePenalty;
type TreasuryAccount = TreasuryAccount;
type MaxBatchConfirmStorageRequests = ConstU32<10>;
type MaxBatchConfirmStorageRequests = ConstU32<100>;
type MaxFilePathSize = ConstU32<512u32>;
type MaxPeerIdSize = ConstU32<100>;
type MaxNumberOfPeerIds = ConstU32<5>;