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)
## Summary - Increase `MaxBatchConfirmStorageRequests` runtime constant from 10 to 100 - Applied across all runtime environments: mainnet, stagenet, and testnet ## Test plan - [x] Verify builds pass for all runtime configurations
This commit is contained in:
parent
edf2451af7
commit
db4608f9dd
4 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>;
|
||||
|
|
|
|||
Binary file not shown.
Loading…
Reference in a new issue