diff --git a/services/rbf-service.ts b/services/rbf-service.ts index cf114f6..9134862 100644 --- a/services/rbf-service.ts +++ b/services/rbf-service.ts @@ -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 @@ -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[]; }