@bitgo-forks/bip174
Advanced tools
Comparing version 3.1.0-master.3 to 3.1.0-master.4
{ | ||
"name": "@bitgo-forks/bip174", | ||
"version": "3.1.0-master.3", | ||
"version": "3.1.0-master.4", | ||
"description": "Fork of bip174 with BitGo specific changes", | ||
@@ -5,0 +5,0 @@ "main": "src/lib/psbt.js", |
@@ -30,4 +30,8 @@ 'use strict'; | ||
function canAdd(currentData, newData) { | ||
return !!currentData && !!newData && currentData.sighashType === undefined; | ||
return ( | ||
!!currentData && | ||
newData !== undefined && | ||
currentData.sighashType === undefined | ||
); | ||
} | ||
exports.canAdd = canAdd; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
100073
2630