From 0c6b3f5a750348a898f32ac7f0c8a5f600d03900 Mon Sep 17 00:00:00 2001 From: Gonza Montiel Date: Wed, 11 Feb 2026 11:49:29 -0300 Subject: [PATCH] fix: rollback to cast sent --private-key since we are in tests --- test/scripts/fund-validators.ts | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/test/scripts/fund-validators.ts b/test/scripts/fund-validators.ts index c44e4e51..e80deb7e 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,13 +87,10 @@ export const fundValidators = async (options: FundValidatorsOptions): Promise