Parcourir la source

Update solanaCli.ts

Loris Leiva il y a 4 mois
Parent
commit
16f00c90dd
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      utils/solanaCli.ts

+ 1 - 1
utils/solanaCli.ts

@@ -12,7 +12,7 @@ export async function patchSolanaDependencies(
   ctx: Pick<RenderContext, 'solanaVersion' | 'targetDirectory'>
 ): Promise<void> {
   const patchMap: Record<VersionWithoutPatch, string[]> = {
-    '1.17': ['-p ahash@0.8.11 --precise 0.8.6'],
+    '1.17': ['-p ahash@0.8.12 --precise 0.8.6'],
   };
 
   const patches = patchMap[ctx.solanaVersion.withoutPatch] ?? [];