Skip to content

Commit

Permalink
fix broken import
Browse files Browse the repository at this point in the history
  • Loading branch information
jrwbabylonlab committed Nov 25, 2024
1 parent 863e5f3 commit 09fe163
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/delegations/signWithdrawalTx.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {
PsbtTransactionResult,
PsbtResult,
withdrawEarlyUnbondedTransaction,
withdrawTimelockUnbondedTransaction,
} from "@babylonlabs-io/btc-staking-ts";
Expand Down Expand Up @@ -78,7 +78,7 @@ export const signWithdrawalTx = async (
const feeRate = getFeeRateFromMempool(fees);

// Create the withdrawal transaction
let withdrawPsbtTxResult: PsbtTransactionResult;
let withdrawPsbtTxResult: PsbtResult;
if (delegation?.unbondingTx) {
// Withdraw funds from an unbonding transaction that was submitted for early unbonding and the unbonding period has passed
withdrawPsbtTxResult = withdrawEarlyUnbondedTransaction(
Expand Down

0 comments on commit 09fe163

Please sign in to comment.