소스 검색

Update solanaCli.ts

Loris Leiva 4 달 전
부모
커밋
16f00c90dd
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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] ?? [];