mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 17:31:36 +00:00
fix #3980
This commit is contained in:
parent
26e966c3e0
commit
76734f6a88
1 changed files with 4 additions and 1 deletions
|
@ -1502,7 +1502,10 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
|
|||
tx.set_rbf(True)
|
||||
|
||||
if fee < self.wallet.relayfee() * tx.estimated_size() / 1000:
|
||||
self.show_error(_("This transaction requires a higher fee, or it will not be propagated by the network"))
|
||||
self.show_error('\n'.join([
|
||||
_("This transaction requires a higher fee, or it will not be propagated by your current server"),
|
||||
_("Try to raise your transaction fee, or use a server with a lower relay fee.")
|
||||
])
|
||||
return
|
||||
|
||||
if preview:
|
||||
|
|
Loading…
Add table
Reference in a new issue