From 415ab90729d178317147fd8fb76bdc03da93347a Mon Sep 17 00:00:00 2001 From: Gonza Montiel Date: Wed, 11 Feb 2026 14:02:17 -0300 Subject: [PATCH] fix: rollback to cast send --private-key also for sending funds --- test/scripts/fund-validators.ts | 38 ++++++++++++++++++++------------- 1 file changed, 23 insertions(+), 15 deletions(-) diff --git a/test/scripts/fund-validators.ts b/test/scripts/fund-validators.ts index e80deb7e..90b93db0 100644 --- a/test/scripts/fund-validators.ts +++ b/test/scripts/fund-validators.ts @@ -18,7 +18,7 @@ interface FundValidatorsOptions { interface ValidatorConfig { validators: { publicKey: string; - privateKey?: string; + privateKey: string; solochainAddress?: string; // Optional substrate address }[]; notes?: string; @@ -87,10 +87,13 @@ export const fundValidators = async (options: FundValidatorsOptions): Promise