standard: remove padded Blocks
This commit is contained in:
parent
ec1195bcee
commit
2d75b7e7ff
6 changed files with 2 additions and 12 deletions
test
|
@ -19,7 +19,6 @@ describe('Transaction', function () {
|
|||
|
||||
if (txIn.data) {
|
||||
scriptSig = new Buffer(txIn.data, 'hex')
|
||||
|
||||
} else if (txIn.script) {
|
||||
scriptSig = bscript.fromASM(txIn.script)
|
||||
}
|
||||
|
@ -31,9 +30,7 @@ describe('Transaction', function () {
|
|||
var script
|
||||
|
||||
if (txOut.data) {
|
||||
var data = new Buffer(txOut.data, 'hex')
|
||||
script = data
|
||||
|
||||
script = new Buffer(txOut.data, 'hex')
|
||||
} else if (txOut.script) {
|
||||
script = bscript.fromASM(txOut.script)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue