Browse Source

Merge pull request #3581 from SomberNight/bip_li01_sort_rbf_sweep

RBF/sweep: use BIP_LI01_sort()
3.1
ThomasV 7 years ago
committed by GitHub
parent
commit
13bf539d17
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      lib/wallet.py

6
lib/wallet.py

@ -146,6 +146,7 @@ def sweep(privkeys, network, config, recipient, fee=None, imax=100):
locktime = network.get_local_height()
tx = Transaction.from_io(inputs, outputs, locktime=locktime)
tx.BIP_LI01_sort()
tx.set_rbf(True)
tx.sign(keypairs)
return tx
@ -1080,7 +1081,9 @@ class Abstract_Wallet(PrintError):
if delta > 0:
raise BaseException(_('Cannot bump fee: could not find suitable outputs'))
locktime = self.get_local_height()
return Transaction.from_io(inputs, outputs, locktime=locktime)
tx_new = Transaction.from_io(inputs, outputs, locktime=locktime)
tx_new.BIP_LI01_sort()
return tx_new
def cpfp(self, tx, fee):
txid = tx.txid()
@ -1098,6 +1101,7 @@ class Abstract_Wallet(PrintError):
inputs = [item]
outputs = [(TYPE_ADDRESS, address, value - fee)]
locktime = self.get_local_height()
# note: no need to call tx.BIP_LI01_sort() here - single input/output
return Transaction.from_io(inputs, outputs, locktime=locktime)
def add_input_info(self, txin):

Loading…
Cancel
Save