set correct sequence number to input when using nLocktime

This commit is contained in:
OutCast3k
2014-12-15 13:54:13 +00:00
parent 529a2193d8
commit 4fa08e82ef
2 changed files with 5 additions and 4 deletions
+3 -2
View File
@@ -354,10 +354,10 @@ $(document).ready(function() {
tx.lock_time = $("#nLockTime").val()*1;
}
$.each($("#inputs .row"), function(i,o){
if($(".txId",o).val()!="" && $(".txIdN",o).val()!=""){
tx.addinput($(".txId",o).val(), $(".txIdN",o).val(), $(".txIdScript",o).val());
var sequence = (tx.lock_time==0) ? 4294967295 : 0;
tx.addinput($(".txId",o).val(), $(".txIdN",o).val(), $(".txIdScript",o).val(), sequence);
}
});
@@ -679,6 +679,7 @@ $(document).ready(function() {
try {
var tx = coinjs.transaction();
var t = tx.deserialize(script.val());
var signed = t.sign(wifkey.val());
$("#signedData textarea").val(signed);
$("#signedData .txSize").html(t.size());