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 <Shaptic@users.noreply.github.com>
  • Loading branch information
chadoh and Shaptic committed Jun 13, 2024
1 parent 1dccd9b commit 87ca94f
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 @@ -571,7 +571,7 @@ export class AssembledTransaction<T> {

get result(): T {
try {
if(!this.simulationData.result){
if (!this.simulationData.result) {
throw new Error("No simulation result!");
}
return this.options.parseResultXdr(this.simulationData.result?.retval);
Expand Down

0 comments on commit 87ca94f

Please sign in to comment.