@ledgerhq/hw-app-btc
Advanced tools
Comparing version 4.3.0-beta.589ba3c6 to 4.3.0-beta.954e9e07
@@ -309,3 +309,3 @@ "use strict"; | ||
} else { | ||
scriptBlocks.push(Buffer.concat([input.script.slice(offset, offset + blockSize), input.sequence])); | ||
scriptBlocks.push(Buffer.concat([input.script.slice(offset, offset + blockSize), input.sequence ? input.sequence : Buffer.alloc(0)])); | ||
} | ||
@@ -312,0 +312,0 @@ offset += blockSize; |
{ | ||
"name": "@ledgerhq/hw-app-btc", | ||
"version": "4.3.0-beta.589ba3c6", | ||
"version": "4.3.0-beta.954e9e07", | ||
"description": "Ledger Hardware Wallet Bitcoin Application API", | ||
@@ -28,3 +28,3 @@ "keywords": [ | ||
"dependencies": { | ||
"@ledgerhq/hw-transport": "^4.3.0-beta.589ba3c6", | ||
"@ledgerhq/hw-transport": "^4.3.0-beta.954e9e07", | ||
"create-hash": "^1.1.3" | ||
@@ -31,0 +31,0 @@ }, |
@@ -305,3 +305,3 @@ //@flow | ||
input.script.slice(offset, offset + blockSize), | ||
input.sequence | ||
input.sequence ? input.sequence : Buffer.alloc(0) | ||
]) | ||
@@ -308,0 +308,0 @@ ); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
194454