Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for version 3 transactions #116

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion src/transaction.ts
Original file line number Diff line number Diff line change
@@ -182,7 +182,7 @@ function validateOpts(opts: TxOpts) {
if (typeof _opts.allowUnknowOutput !== 'undefined')
opts.allowUnknownOutputs = _opts.allowUnknowOutput;
// 0 and -1 happens in tests
if (![-1, 0, 1, 2].includes(_opts.version)) throw new Error(`Unknown version: ${_opts.version}`);
if (![-1, 0, 1, 2, 3].includes(_opts.version)) throw new Error(`Unknown version: ${_opts.version}`);
if (typeof _opts.lockTime !== 'number') throw new Error('Transaction lock time should be number');
P.U32LE.encode(_opts.lockTime); // Additional range checks that lockTime
// There is no PSBT v1, and any new version will probably have fields which we don't know how to parse, which