Skip to content

Commit

Permalink
fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mvadari committed Jul 19, 2022
1 parent 552b985 commit 0ab2770
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions packages/xrpl/src/models/transactions/XChainAddAttestation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export interface XChainAddAttestation extends BaseTransaction {

XChainBridge: XChainBridge

XChainClaimAttestationBatch: {
XChainClaimAttestationBatch: Array<{
XChainClaimAttestationBatchElement: {
Account: string

Expand All @@ -29,10 +29,11 @@ export interface XChainAddAttestation extends BaseTransaction {
WasLockingChainSend: 0 | 1

XChainClaimID: string
}[]
}
}
}>

XChainCreateAccountAttestationBatch: {}[]
// TODO: update this once it's been implemented in rippled
XChainCreateAccountAttestationBatch: Array<Record<string, never>>
}

/**
Expand Down

0 comments on commit 0ab2770

Please sign in to comment.