diff --git a/packages/bcp/src/cosmwasmconnection.ts b/packages/bcp/src/cosmwasmconnection.ts index 68a416b3..dd288a7d 100644 --- a/packages/bcp/src/cosmwasmconnection.ts +++ b/packages/bcp/src/cosmwasmconnection.ts @@ -205,7 +205,7 @@ export class CosmWasmConnection implements BlockchainConnection { ): Promise | FailedTransaction> { try { const response = await this.restClient.txsById(id); - const chainId = await this.chainId(); + const chainId = this.chainId(); return this.parseAndPopulateTxResponse(response, chainId); } catch (error) { if (error.response.status === 404) {