Skip to content

Commit

Permalink
Merge pull request #809 from abdulhaseeb13mar/fix/argument-type
Browse files Browse the repository at this point in the history
fix getCommittedDetails parameter types
  • Loading branch information
dhedey authored Oct 31, 2024
2 parents cd7edaf + 8f48b73 commit 0d7b341
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions sdk/typescript/lib/subapis/transaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ export class Transaction {
getCommittedDetails(
transactionIntentHash: string,
options?: {
rawHex: false
receiptEvents: false
receiptFeeSource: false
receiptFeeSummary: false
receiptFeeDestination: false
receiptCostingParameters: false
receiptStateChanges: false
affectedGlobalEntities: false
balanceChanges: false
receiptOutput: false
rawHex: boolean
receiptEvents: boolean
receiptFeeSource: boolean
receiptFeeSummary: boolean
receiptFeeDestination: boolean
receiptCostingParameters: boolean
receiptStateChanges: boolean
affectedGlobalEntities: boolean
balanceChanges: boolean
receiptOutput: boolean
}
): Promise<TransactionCommittedDetailsResponse> {
return this.innerClient.transactionCommittedDetails({
Expand Down

0 comments on commit 0d7b341

Please sign in to comment.