fix: add witness field to interface In

https://github.com/bitcoinjs/bitcoinjs-lib/blob/master/src/transaction.js#L111
This commit is contained in:
Shude Li
2018-05-13 18:56:18 +08:00
committed by GitHub
parent 9028a63234
commit 6c416c39c3

View File

@@ -23,6 +23,7 @@ export interface In {
hash: Buffer;
index: number;
sequence: number;
witness: string[];
}
export interface Network {