From 74834783fa7a49e5e14b79623edea28fae9e1027 Mon Sep 17 00:00:00 2001 From: liangping <18786721@qq.com> Date: Mon, 11 Sep 2023 13:06:20 +0800 Subject: [PATCH] fix build error --- src/modules/[chain]/nft/nftStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/[chain]/nft/nftStore.ts b/src/modules/[chain]/nft/nftStore.ts index c54b006e..144b15e3 100644 --- a/src/modules/[chain]/nft/nftStore.ts +++ b/src/modules/[chain]/nft/nftStore.ts @@ -16,7 +16,7 @@ export const useNFTModule = defineStore('module-nft', { return useBlockchain() }, client() { - const client = new NFTRestClient(this.chain.rest, DEFAULT) + const client = new NFTRestClient("", DEFAULT) return client } },