mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 09:50:01 +00:00
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:
parent
50f61fb945
commit
2c2546d36f
3 changed files with 3 additions and 3 deletions
|
|
@ -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>;
|
||||
|
|
|
|||
|
|
@ -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>;
|
||||
|
|
|
|||
|
|
@ -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>;
|
||||
|
|
|
|||
Loading…
Reference in a new issue