From 579c0b62d1907e0305cd80f6a22f3304c7ba08b8 Mon Sep 17 00:00:00 2001 From: Calvin Koepke Date: Tue, 17 Sep 2024 09:45:35 -0600 Subject: [PATCH] chore: fmt --- packages/blaze-sdk/src/blaze.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/packages/blaze-sdk/src/blaze.ts b/packages/blaze-sdk/src/blaze.ts index 5a62368..3a5c110 100644 --- a/packages/blaze-sdk/src/blaze.ts +++ b/packages/blaze-sdk/src/blaze.ts @@ -98,7 +98,12 @@ export class Blaze { * @description This method sends the provided transaction to the blockchain network * using the configured wallet, or the configured provider if set. */ - async submitTransaction(tx: Transaction, useProvider?: boolean): Promise { - return useProvider ? this.provider.postTransactionToChain(tx) : this.wallet.postTransaction(tx); + async submitTransaction( + tx: Transaction, + useProvider?: boolean, + ): Promise { + return useProvider + ? this.provider.postTransactionToChain(tx) + : this.wallet.postTransaction(tx); } }