Remove RBF

This commit is contained in:
alamshafil 2022-09-16 21:43:06 -04:00
parent 9befad58db
commit 437243023a
No known key found for this signature in database
GPG Key ID: 91512EB4C9B538A9
2 changed files with 6 additions and 9 deletions

View File

@ -1490,7 +1490,7 @@
/* sign a "standard" input */
r.signinput = function(index, wif, sigHashType){
var key = coinjs.wif2pubkey(wif);
var shType = sigHashType+64 || 1;
var shType = sigHashType || 1;
var signature = this.transactionSig(index, wif, shType);
var s = coinjs.script();
s.writeBytes(Crypto.util.hexToBytes(signature));
@ -1501,7 +1501,7 @@
/* signs a time locked / hodl input */
r.signhodl = function(index, wif, sigHashType){
var shType = sigHashType+64 || 1;
var shType = sigHashType || 1;
var signature = this.transactionSig(index, wif, shType);
var redeemScript = this.ins[index].script.buffer
var s = coinjs.script();
@ -1541,7 +1541,7 @@
var pubkeyList = scriptListPubkey(coinjs.script(redeemScript));
var sigsList = scriptListSigs(this.ins[index].script);
var shType = sigHashType+64 || 1;
var shType = sigHashType || 1;
var sighash = Crypto.util.hexToBytes(this.transactionHash(index, shType));
var signature = Crypto.util.hexToBytes(this.transactionSig(index, wif, shType));

View File

@ -176,9 +176,6 @@ $(document).ready(function() {
}
var sequence = 0xffffffff-1;
if($("#walletRBF").is(":checked")){
sequence = 0xffffffff-2;
}
tx.addUnspent($("#walletAddress").html(), function(data){
@ -1011,7 +1008,7 @@ $(document).ready(function() {
$("#inputs .row:last input").attr('disabled',true);
var txid = ((tx).match(/.{1,2}/g).reverse()).join("")+'';
var txid = tx;
$("#inputs .txId:last").val(txid);
$("#inputs .txIdN:last").val(n);
@ -1116,7 +1113,7 @@ $(document).ready(function() {
if(data.result && data.error == null){
$("#redeemFromAddress").removeClass('hidden').html('<span class="glyphicon glyphicon-info-sign"></span> Retrieved unspent inputs from address <a href="'+explorer_addr+redeem.addr+'" target="_blank">'+redeem.addr+'</a>');
data.result.forEach(i => {
addOutput(i.txid, i.index, i.script, (i.value/100000000));
addOutput(i.txid, i.index+1, i.script, (i.value/100000000));
});
} else {
$("#redeemFromStatus").removeClass('hidden').html('<span class="glyphicon glyphicon-exclamation-sign"></span> Unexpected error, unable to retrieve unspent outputs.');
@ -1539,7 +1536,7 @@ $(document).ready(function() {
var tx = coinjs.transaction();
var t = tx.deserialize(script.val());
var signed = t.sign(wifkey.val(), $("#sighashType option:selected").val());
var signed = t.sign(wifkey.val(), $("#sighashType option:selected").val()+64);
$("#signedData textarea").val(signed);
$("#signedData .txSize").html(t.size());
$("#signedData").removeClass('hidden').fadeIn();