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
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function parseDerivationPath(derivationPath: string): {
return { purpose, change, addressIndex };
}

function parsePsbtOutputs(psbt: Psbt, network: utxolib.Network): WithdrawBaseOutputUTXO<bigint>[] {
export function parsePsbtOutputs(psbt: Psbt, network: utxolib.Network): WithdrawBaseOutputUTXO<bigint>[] {
const parsedOutputs: WithdrawBaseOutputUTXO<bigint>[] = [];
let bip32Derivation: Bip32Derivation | undefined;

Expand Down Expand Up @@ -58,7 +58,7 @@ function parsePsbtOutputs(psbt: Psbt, network: utxolib.Network): WithdrawBaseOut
return parsedOutputs;
}

function verifyChangeAddress(
export function verifyChangeAddress(
output: WithdrawBaseOutputUTXO<bigint>,
accounts: WatchOnlyAccount[],
network: utxolib.Network
Expand Down