Skip to content

Commit

Permalink
chore(spendable): add confirmation on UTXOLimited (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
thedoublejay authored Oct 18, 2024
1 parent a01f806 commit 72bc27f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sdk/src/transactions/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export interface UTXO {
confirmation: number
}

export type UTXOLimited = Pick<UTXO, "txid" | "n" | "sats" | "scriptPubKey">
export type UTXOLimited = Pick<UTXO, "txid" | "n" | "sats" | "scriptPubKey" | "confirmation">

export interface Output {
address: string
Expand Down

0 comments on commit 72bc27f

Please sign in to comment.