fix: 🪳 Add --msp-distribute-files flag to MSP node in Devnet config (#297)

.. and remove an unused type in client.
This commit is contained in:
Steve Degosserie 2025-11-13 14:09:34 +01:00 committed by GitHub
parent c22297ccaf
commit a3659548c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -39,6 +39,7 @@ node:
- "--msp-charging-period 100" # in blocks, 100 blocks = 10 minutes
- "--max-storage-capacity 10737418240" # 10 GiB
- "--jump-capacity=1073741824" # 1 GiB
- "--msp-distribute-files"
ingress:
enabled: false

View file

@ -31,8 +31,7 @@ use sc_service::{ChainType, DatabaseSource};
use serde::Deserialize;
use shc_client::builder::{
BlockchainServiceOptions, BspChargeFeesOptions, BspMoveBucketOptions, BspSubmitProofOptions,
BspUploadFileOptions, FishermanOptions, IndexerOptions, MspChargeFeesOptions,
MspMoveBucketOptions,
BspUploadFileOptions, FishermanOptions, MspChargeFeesOptions, MspMoveBucketOptions,
};
use shc_rpc::RpcConfig;
use shp_types::StorageDataUnit;