style: 🚨 fix lint errors

This commit is contained in:
DavideSegullo 2023-03-27 12:54:59 +02:00
parent da5ab18564
commit 53e39ab24b
2 changed files with 4 additions and 6 deletions

View File

@ -340,12 +340,10 @@ export class CosmWasmClient {
*
* 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<string> {
public async broadcastTxWithoutPolling(tx: Uint8Array): Promise<string> {
const broadcasted = await this.forceGetTmClient().broadcastTxSync({ tx });
if (broadcasted.code) {

View File

@ -559,7 +559,7 @@ export class SigningCosmWasmClient extends CosmWasmClient {
/**
* Creates a transaction with the given messages, fee and memo. Then signs and broadcasts the transaction.
*
*
* This method is useful if you want to send a transaction in broadcast,
* without waiting for it to be placed inside a block, because for example
* I would like to receive the hash to later track the transaction with another tool.
@ -568,7 +568,7 @@ export class SigningCosmWasmClient extends CosmWasmClient {
* @param messages
* @param fee
* @param memo
*
*
* @returns Returns the hash of the transaction
*/
public async signAndBroadcastWithoutPolling(