Skip to content

Commit

Permalink
add space after if in src/contract/assembled_transaction.ts
Browse files Browse the repository at this point in the history
Co-authored-by: George <[email protected]>
  • Loading branch information
chadoh and Shaptic committed Jun 13, 2024
1 parent 87ca94f commit 319d577
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/contract/assembled_transaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,7 @@ export class AssembledTransaction<T> {
/** The account that is executing the footprint restore operation. */
account?: Account
): Promise<Api.GetTransactionResponse> {
if(!this.options.signTransaction){
if (!this.options.signTransaction) {
throw new Error("For automatic restore to work you must provide a signTransaction function when initializing your Client");
}
account = account ?? await getAccount(this.options, this.server);
Expand Down

0 comments on commit 319d577

Please sign in to comment.