This website works better with JavaScript.
Home
Explore
Help
Sign In
lukechilds
/
bitcoincashjs
mirror of
https://github.com/lukechilds/bitcoincashjs.git
Watch
1
Star
0
Fork
0
Code
Issues
Projects
Releases
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1934
Commits
3
Branches
7
Tags
11 MiB
Tree:
f43c2f9aa3
master
patch-1
patch-2
v0.1.10
v0.1.2
v0.1.3
v0.1.5
v0.1.6
v0.1.7
v0.1.9
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from 'f43c2f9aa3'
${ noResults }
bitcoincashjs
/
lib
/
transaction
/
input
/
index.js
6 lines
72 B
Raw
Normal View
History
Move input to subfolder before refactor Gonna inherit from it on two subclasses: "P2SH Input" and "P2PKH Input" They'll have a `addSignature` method, to deal with new signatures, a `clearSignatures`, in case the outputs change and the signatures get invalidated, `countMissingSignatures`, and a reference to the UTXO they'll be spending, so all logic regarding "p2sh mapping" gets to be in here and the Transaction class is not polluted.
10 years ago
'use strict'
;
var
Input
=
require
(
'./input'
)
;
module
.
exports
=
Input
;