Skip to content

Commit

Permalink
Merge branch 'main' into feat/composer_error_callbacks
Browse files Browse the repository at this point in the history
  • Loading branch information
joe-p committed Jan 24, 2025
2 parents 68674c0 + b139242 commit b96eea6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
26 changes: 13 additions & 13 deletions src/types/composer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1448,9 +1448,9 @@ export class TransactionComposer {
coverAppCallInnerTransactionFees: params?.coverAppCallInnerTransactionFees,
additionalAtcContext: params?.coverAppCallInnerTransactionFees
? {
maxFees: this.txnMaxFees,
suggestedParams: suggestedParams!,
}
maxFees: this.txnMaxFees,
suggestedParams: suggestedParams!,
}
: undefined,
},
this.algod,
Expand Down Expand Up @@ -1508,16 +1508,16 @@ export class TransactionComposer {
...rawOptions,
...(Config.debug
? {
allowEmptySignatures: true,
fixSigners: true,
allowMoreLogging: true,
execTraceConfig: new modelsv2.SimulateTraceConfig({
enable: true,
scratchChange: true,
stackChange: true,
stateChange: true,
}),
}
allowEmptySignatures: true,
fixSigners: true,
allowMoreLogging: true,
execTraceConfig: new modelsv2.SimulateTraceConfig({
enable: true,
scratchChange: true,
stackChange: true,
stateChange: true,
}),
}
: undefined),
}),
)
Expand Down
5 changes: 3 additions & 2 deletions src/types/interface-of.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export type InterfaceOf<ClassType> = {
[Member in keyof ClassType]: ClassType[Member]
}
[Member in keyof ClassType]: ClassType[Member];
};

0 comments on commit b96eea6

Please sign in to comment.