Skip to content

Commit

Permalink
fix: top attest ctype not found
Browse files Browse the repository at this point in the history
release-as: 0.8.2
  • Loading branch information
zzcwoshizz committed Dec 23, 2022
1 parent c12fba2 commit 3534807
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/app-config/src/ctypes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ export const TOP_CTYPES_FOR_ISSUE: HexString[] = isRelease
'0xddd55777a3be0f8b848b94ddd98c2c4716add21dc50787ac65534b37f1b5bba5'
];

export const TOP_CTYPES_FOR_ATTEST: HexString[] = isRelease ? [] : [];
export const TOP_CTYPES_FOR_ATTEST: HexString[] = isRelease
? ['0x9884edce63d4de703c4b3ebf23063929705b7139ce2eeb3b6631c2fa25deb74f']
: [];

export function getCTypeMetaForIssue(id: HexString): CTypeMeta | undefined {
const meta: CTypeMeta | undefined = ctypeMeta[id];
Expand Down

0 comments on commit 3534807

Please sign in to comment.