mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-04 04:45:16 +00:00
fix for empty wallets
This commit is contained in:
parent
66f16b7541
commit
9f650e80a3
1 changed files with 1 additions and 1 deletions
|
@ -493,7 +493,7 @@ class Wallet:
|
||||||
|
|
||||||
def choose_tx_inputs( self, amount, fixed_fee ):
|
def choose_tx_inputs( self, amount, fixed_fee ):
|
||||||
""" todo: minimize tx size """
|
""" todo: minimize tx size """
|
||||||
total = 0
|
total = fee = 0
|
||||||
inputs = []
|
inputs = []
|
||||||
for addr in self.addresses:
|
for addr in self.addresses:
|
||||||
h = self.history.get(addr)
|
h = self.history.get(addr)
|
||||||
|
|
Loading…
Add table
Reference in a new issue