From c900e86e3aa2d339dd8343ae5c7354b4655a00d9 Mon Sep 17 00:00:00 2001 From: Thunnini Date: Mon, 12 Dec 2022 18:57:49 +0900 Subject: [PATCH] Fix unknown problem --- wallets/keplr.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallets/keplr.ts b/wallets/keplr.ts index 849bf35..0f8d85a 100644 --- a/wallets/keplr.ts +++ b/wallets/keplr.ts @@ -41,7 +41,7 @@ export class KeplrWallet implements Wallet { constructor(public readonly keplr: Keplr) {} broadcastTxSync(chainId: string, tx: Uint8Array): Promise { - return this.keplr.sendTx(chainId, tx, BroadcastMode.Sync); + return this.keplr.sendTx(chainId, tx, "sync" as BroadcastMode); } getChainInfosWithoutEndpoints(): Promise<