Browse Source

Update solanaCli.ts

Loris Leiva 4 months ago
parent
commit
16f00c90dd
1 changed files with 1 additions and 1 deletions
  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] ?? [];