Skip to content

Commit

Permalink
Function call fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaszslabon committed Nov 9, 2023
1 parent c0e9c6a commit 9fc585b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions system-tests/test/deposit-redemption.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ describe("System Test - Deposit and redemption", () => {
const depositRawTxVectors = extractBitcoinRawTxVectors(
rawDepositTransaction
)
depositorBridgeHandle.revealDeposit(
await depositorBridgeHandle.revealDeposit(
depositRawTxVectors,
depositUtxo.outputIndex,
depositReceipt
Expand Down Expand Up @@ -487,7 +487,7 @@ describe("System Test - Deposit and redemption", () => {
const depositRawTxVectors = extractBitcoinRawTxVectors(
rawDepositTransaction
)
depositorBridgeHandle.revealDeposit(
await depositorBridgeHandle.revealDeposit(
depositRawTxVectors,
depositUtxo.outputIndex,
depositReceipt,
Expand Down Expand Up @@ -632,11 +632,11 @@ describe("System Test - Deposit and redemption", () => {
)}`
)

await depositorBridgeHandle.requestRedemption(
await tbtcTokenHandle.requestRedemption(
systemTestsContext.walletBitcoinKeyPair.publicKey.compressed,
sweepUtxo,
redeemerOutputScript,
tbtcBalanceOfDepositor
tbtcBalanceOfDepositor,
)

console.log(
Expand Down
2 changes: 1 addition & 1 deletion system-tests/test/minting-unminting.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ describe("System Test - Minting and unminting", () => {
const depositRawTxVectors = extractBitcoinRawTxVectors(
rawDepositTransaction
)
depositorBridgeHandle.revealDeposit(
await depositorBridgeHandle.revealDeposit(
depositRawTxVectors,
depositUtxo.outputIndex,
depositReceipt,
Expand Down

0 comments on commit 9fc585b

Please sign in to comment.