Skip to content

Commit

Permalink
🚨 Fix lint warning on !=
Browse files Browse the repository at this point in the history
  • Loading branch information
doitian committed Feb 28, 2024
1 parent 3ebc213 commit 927aa1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/transaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ function mergeLockActions(target, lockActions) {
);
if (existing === undefined) {
target.buildingPacket.value.lock_actions.push(lockAction);
} else if (lockAction.script_info_hash != toJson(SCRIPT_INFO_HASH)) {
} else if (lockAction.script_info_hash !== toJson(SCRIPT_INFO_HASH)) {
// non-multisig lock action, just overwrite
Object.assign(existing, lockAction);
} else {
Expand Down

0 comments on commit 927aa1f

Please sign in to comment.