소스 검색

getGroupMint requires no hash

Joystream Stats 3 년 전
부모
커밋
b66ce13290
1개의 변경된 파일3개의 추가작업 그리고 4개의 파일을 삭제
  1. 3 4
      api.ts

+ 3 - 4
api.ts

@@ -276,11 +276,10 @@ export const getWorkerReward = (
 export const getCouncilMint = (api: ApiPromise, hash: Hash): Promise<MintId> =>
   api.query.council.councilMint.at(hash);
 
-export const getGroupMint = (
+export const getGroupMint = async (
   api: ApiPromise,
-  group: string,
-  hash: Hash
-): Promise<MintId> => api.query[group].mint.at(hash);
+  group: string
+): Promise<MintId> => (await api.query[group].mint()) as MintId;
 
 export const getMintsCreated = async (
   api: ApiPromise,