Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions services/rbf-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function validateECCLibrary(ecc: any): void {

export interface RBFTransaction {
txid: string;
originalTx: Transaction;
originalTx: any; // Raw Esplora transaction with vin/vout properties
newFeeRate: number;
newFee: number;
replacementTx?: string; // hex transaction
Expand All @@ -59,7 +59,7 @@ export interface RBFValidationResult {
isValid: boolean;
canReplace: boolean;
reason?: string;
originalTx?: Transaction;
originalTx?: any; // Raw Esplora transaction with vin/vout properties
utxos?: UTXO[];
}

Expand Down
Loading