diff --git a/packages/stargate/src/stargateclient.ts b/packages/stargate/src/stargateclient.ts index 56883816..69997d18 100644 --- a/packages/stargate/src/stargateclient.ts +++ b/packages/stargate/src/stargateclient.ts @@ -499,12 +499,10 @@ export class StargateClient { * * If the transaction is broadcasted, a `string` containing the hash of the transaction is returned. The caller then * usually needs to check if the transaction was included in a block and was successful. - * + * * @returns Returns the hash of the transaction */ - public async broadcastTxWithoutPolling( - tx: Uint8Array, - ): Promise { + public async broadcastTxWithoutPolling(tx: Uint8Array): Promise { const broadcasted = await this.forceGetTmClient().broadcastTxSync({ tx }); if (broadcasted.code) {