Skip to content

Commit

Permalink
[FIX] DepositID is string
Browse files Browse the repository at this point in the history
  • Loading branch information
JSanchezFDZ committed Aug 31, 2024
1 parent ae95687 commit 46d897e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ ___

| Name | Type |
| :------ | :------ |
| `depositId` | [`Hex`](Hex.md) |
| `depositId` | `string` |

#### Returns

Expand Down
2 changes: 1 addition & 1 deletion typescript/api-reference/interfaces/L1BitcoinDepositor.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Gets the deposit status for the given deposit identifier.

| Name | Type | Description |
| :------ | :------ | :------ |
| `depositId` | [`Hex`](../classes/Hex.md) | Identifier of the deposit to get the status for. |
| `depositId` | `string` | Identifier of the deposit to get the status for. |

#### Returns

Expand Down
Binary file removed typescript/keep-network-tbtc-v2.ts-v2.5.1-dev.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion typescript/test/utils/mock-cross-chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export class MockL1BitcoinDepositor implements L1BitcoinDepositor {
this.#encoder = encoder
}

getDepositStatus(depositId: Hex): Promise<DepositState> {
getDepositStatus(depositId: string): Promise<DepositState> {
throw new Error("Not supported")
}

Expand Down

0 comments on commit 46d897e

Please sign in to comment.