another minor tweak/fix to the way that nLocktime works

This commit is contained in:
OutCast3k
2014-12-15 14:38:39 +00:00
parent 4fa08e82ef
commit 23b6c84d1f
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -356,7 +356,7 @@ $(document).ready(function() {
$.each($("#inputs .row"), function(i,o){
if($(".txId",o).val()!="" && $(".txIdN",o).val()!=""){
var sequence = (tx.lock_time==0) ? 4294967295 : 0;
var sequence = ($("#nLockTime").val()=="0") ? 4294967295 : 0;
tx.addinput($(".txId",o).val(), $(".txIdN",o).val(), $(".txIdScript",o).val(), sequence);
}
});