mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 17:31:36 +00:00
Merge pull request #605 from CodingAnarchy/master
follow up to pull request #604
This commit is contained in:
commit
e55f27cdd7
1 changed files with 2 additions and 1 deletions
|
@ -701,7 +701,8 @@ class ElectrumWindow:
|
|||
if not is_fee: fee = None
|
||||
if amount is None:
|
||||
return
|
||||
inputs, total, fee = self.wallet.choose_tx_inputs( amount, fee )
|
||||
#assume two outputs - one for change
|
||||
inputs, total, fee = self.wallet.choose_tx_inputs( amount, fee, 2 )
|
||||
if not is_fee:
|
||||
fee_entry.set_text( str( Decimal( fee ) / 100000000 ) )
|
||||
self.fee_box.show()
|
||||
|
|
Loading…
Add table
Reference in a new issue